Skip to content

Commit 34a0217

Browse files
author
OneDrive Build
committed
More lint
1 parent c33d13f commit 34a0217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/sourcemap.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ namespace ts {
267267
function serializeMappings(): void {
268268
const segments: string[] = [];
269269
for (let i = 0, len = mappingCharCodes.length; i < len; i += 1024) {
270-
segments.push(String.fromCharCode.apply(null, mappingCharCodes.slice(i, i + 1024)));
270+
segments.push(String.fromCharCode.apply(undefined, mappingCharCodes.slice(i, i + 1024)));
271271
}
272272
mappingCharCodes.length = 0;
273-
mappings += segments.join('');
273+
mappings += segments.join("");
274274
}
275275

276276
function toJSON(): RawSourceMap {

0 commit comments

Comments
 (0)