Cache
Cache must implement all 5 methods below.
get(id: string): Dataset(id: string, data: Data)delete(id: string)has(id: string): booleanclear()
JavaScript's Map can be used as Cache as it satisfies all five conditions above.
TODO
Cache must implement all 5 methods below.
get(id: string): Dataset(id: string, data: Data)delete(id: string)has(id: string): booleanclear()JavaScript's Map can be used as Cache as it satisfies all five conditions above.
TODO