Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
export * from './functions.any';
|
|
|
|
/**
|
|
* Whether or not there are always on labels.
|
|
*
|
|
* @returns {boolean}
|
|
*/
|
|
export function isAlwaysOnTitleBarEmpty() {
|
|
const bar = document.querySelector('#alwaysVisible>div');
|
|
|
|
return bar?.childNodes.length === 0;
|
|
}
|