summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_util/std_asserts.ts
diff options
context:
space:
mode:
authorKenta Moriuchi <moriken@kimamass.com>2024-01-06 00:03:06 +0900
committerGitHub <noreply@github.com>2024-01-05 15:03:06 +0000
commite7e25db24f5dc47c5cc8268453ec9a098eb99e36 (patch)
treeccfc9680968a2768e87b708b67772ac517cb442b /ext/node/polyfills/_util/std_asserts.ts
parent9f86705fa64db7c1569f9244673e97376ae75782 (diff)
chore: update deno_lint for CI (#21802)
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,
) {