This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/src/background/infrastructures/memory-storage.js
2018-07-22 00:01:24 +09:00

11 lines
142 B
JavaScript

const db = {};
export default class MemoryStorage {
set(name, value) {
db[name] = value;
}
get(name) {
return db[name];
}
}