Files
Asger Feldthaus ccce0205b4 JS: Add test
2020-04-02 11:34:07 +01:00

6 lines
114 B
TypeScript

declare let cache: { [x: string]: Promise<any> };
function deleteCache(x: string) {
delete cache[x]; // OK
}