(key: string, value: T, ttl: number = 0)
| 28 | } |
| 29 | |
| 30 | set<T = any>(key: string, value: T, ttl: number = 0) { |
| 31 | this.envMap.set(key, { |
| 32 | value, |
| 33 | ttl: Date.now() + ttl * 1000 |
| 34 | }); |
| 35 | } |
| 36 | |
| 37 | ttl(key: string) { |
| 38 | const data = this.envMap.get(key); |
no outgoing calls
no test coverage detected