UNPKG

vuex-persistfile

Version:

Persist Vuex state in the filesystem for Electron

16 lines (12 loc) 202 B
class MemoryDriver { constructor() { this.memory = {} } write(path, data) { this.memory[path] = data } read(path) { return this.memory[path] } } module.exports = MemoryDriver