Skip to content

Commit f45ec92

Browse files
Fixed lints.
1 parent b702062 commit f45ec92

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/harness/harness.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ namespace Utils {
420420

421421
const maxHarnessFrames = 1;
422422

423-
export function filterStack(error: Error, stackTraceLimit: number = Infinity) {
423+
export function filterStack(error: Error, stackTraceLimit = Infinity) {
424424
const stack = <string>(<any>error).stack;
425425
if (stack) {
426426
const lines = stack.split(/\r\n?|\n/g);

src/lib/es2015.symbol.wellknown.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ interface Map<K, V> {
110110
readonly [Symbol.toStringTag]: "Map";
111111
}
112112

113-
interface WeakMap<K extends object, V>{
113+
interface WeakMap<K extends object, V> {
114114
readonly [Symbol.toStringTag]: "WeakMap";
115115
}
116116

0 commit comments

Comments
 (0)