EmbyCrackedClient/web/modules/emby-apiclient/appstorage-memory.js
2025-06-25 11:46:04 +08:00

1 line
No EOL
280 B
JavaScript

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;