UNPKG

iptv-checker

Version:

Node.js CLI tool for checking links in IPTV playlists

18 lines (14 loc) 215 B
export class Cache { constructor() { this.store = new Set() } add(value) { this.store.add(value) } has(value) { return this.store.has(value) } clear() { this.store = new Set() } }