UNPKG

mtproton

Version:

Telegram API JS (MTProto) client library for browser and nodejs

18 lines (13 loc) 283 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;