tidal-hifi/src/scripts/window-functions.ts

8 lines
161 B
TypeScript
Raw Normal View History

2023-05-01 23:23:43 +02:00
export const setTitle = function (title: string) {
window.document.title = title;
};
export const getTitle = function () {
return window.document.title;
};