We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c33d13f commit 34a0217Copy full SHA for 34a0217
src/compiler/sourcemap.ts
@@ -267,10 +267,10 @@ namespace ts {
267
function serializeMappings(): void {
268
const segments: string[] = [];
269
for (let i = 0, len = mappingCharCodes.length; i < len; i += 1024) {
270
- segments.push(String.fromCharCode.apply(null, mappingCharCodes.slice(i, i + 1024)));
+ segments.push(String.fromCharCode.apply(undefined, mappingCharCodes.slice(i, i + 1024)));
271
}
272
mappingCharCodes.length = 0;
273
- mappings += segments.join('');
+ mappings += segments.join("");
274
275
276
function toJSON(): RawSourceMap {
0 commit comments