mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-05-11 05:23:09 +02:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
const windowFunctions = {};
|
|
|
|
windowFunctions.setTitle = function(title) {
|
|
window.document.title = title;
|
|
};
|
|
|
|
windowFunctions.getTitle = function() {
|
|
return window.document.title;
|
|
};
|
|
|
|
module.exports = windowFunctions;
|