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/shared/versions/storage.js
2018-05-05 17:43:42 +09:00

11 lines
225 B
JavaScript

const load = () => {
return browser.storage.local.get('version').then(({ version }) => {
return version;
});
};
const save = (version) => {
return browser.storage.local.set({ version });
};
export { load, save };