diff options
Diffstat (limited to 'ext/node/polyfills/_util')
-rw-r--r-- | ext/node/polyfills/_util/std_asserts.ts | 2 | ||||
-rw-r--r-- | ext/node/polyfills/_util/std_fmt_colors.ts | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/ext/node/polyfills/_util/std_asserts.ts b/ext/node/polyfills/_util/std_asserts.ts index ae23dc08f..f25904251 100644 --- a/ext/node/polyfills/_util/std_asserts.ts +++ b/ext/node/polyfills/_util/std_asserts.ts @@ -340,7 +340,6 @@ export function assertNotStrictEquals<T>( * then throw. */ export function assertMatch( actual: string, - // deno-lint-ignore prefer-primordials expected: RegExp, msg?: string, ) { @@ -356,7 +355,6 @@ export function assertMatch( * then throw. */ export function assertNotMatch( actual: string, - // deno-lint-ignore prefer-primordials expected: RegExp, msg?: string, ) { diff --git a/ext/node/polyfills/_util/std_fmt_colors.ts b/ext/node/polyfills/_util/std_fmt_colors.ts index 4a3cad1ec..5072b298e 100644 --- a/ext/node/polyfills/_util/std_fmt_colors.ts +++ b/ext/node/polyfills/_util/std_fmt_colors.ts @@ -18,7 +18,6 @@ const noColor = false; interface Code { open: string; close: string; - // deno-lint-ignore prefer-primordials regexp: RegExp; } |