Files
2026-03-03 23:49:13 +01:00

1 line
735 B
Plaintext

{"version":3,"file":"Map.mjs","names":[],"sources":["../../sources/polyfills/Map.ts"],"sourcesContent":["declare global {\n\tclass Map<K, V> {\n\t\t// es2015.collection.d.ts\n\t\tclear(): void;\n\t\tdelete(key: K): boolean;\n\t\tforEach(\n\t\t\tcallbackfn: (value: V, key: K, map: Map<K, V>) => void,\n\t\t\tthisArg?: unknown,\n\t\t): void;\n\t\tget(key: K): V | undefined;\n\t\thas(key: K): boolean;\n\t\tset(key: K, value: V): this;\n\t\treadonly size: number;\n\t}\n}\n\n// we need to export something here to make this file a module, but don't want to\n// actually include a polyfill because it's potentially significantly slower than\n// the native implementation\nexport {};\n"],"mappings":"AAgBA;AACA;AACA;AACA","ignoreList":[]}