summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_util/std_asserts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_util/std_asserts.ts')
-rw-r--r--ext/node/polyfills/_util/std_asserts.ts2
1 files changed, 0 insertions, 2 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,
) {