EmbyCrackedClient/web/modules/emby-apiclient/appstorage-memory.js

1 line
280 B
JavaScript
Raw Permalink Normal View History

2025-06-25 11:46:04 +08:00
function MyStore(){this.localData={}}MyStore.prototype.setItem=function(name,value){this.localData[name]=value},MyStore.prototype.getItem=function(name){return this.localData[name]},MyStore.prototype.removeItem=function(name){this.localData[name]=null};export default new MyStore;