UNPKG

@dashevo/wallet-lib

Version:
21 lines (17 loc) 282 B
class InMem { constructor() { this.isConfig = false; this.keys = {}; } config() { this.isConfig = true; } setItem(key, item) { this.keys[key] = item; return item; } getItem(key) { return this.keys[key] || null; } } module.exports = InMem;