@beenotung/tslib
Version:
utils library in Typescript
13 lines • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getWindownProp = exports.setWindowProp = void 0;
function setWindowProp(key, value) {
window[key] = value;
return value;
}
exports.setWindowProp = setWindowProp;
function getWindownProp(key) {
return window[key];
}
exports.getWindownProp = getWindownProp;
//# sourceMappingURL=window.js.map