UNPKG

@mt-proto/ncore

Version:

Telegram API JS (MTProto) client library for Node.js and browser

18 lines (13 loc) 300 B
class TempLocalStorage { constructor() { this.storage = new Map(); } set(key, value) { return this.storage.set(key, value); } get(key) { return this.storage.get(key); } } const tempLocalStorage = new TempLocalStorage(); module.exports = tempLocalStorage;