summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_util/asserts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_util/asserts.ts')
-rw-r--r--ext/node/polyfills/_util/asserts.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/node/polyfills/_util/asserts.ts b/ext/node/polyfills/_util/asserts.ts
index 7760c8639..ad85ecbf2 100644
--- a/ext/node/polyfills/_util/asserts.ts
+++ b/ext/node/polyfills/_util/asserts.ts
@@ -1,5 +1,8 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// TODO(petamoriken): enable prefer-primordials for node polyfills
+// deno-lint-ignore-file prefer-primordials
+
/** Assertion error class for node compat layer's internal code. */
export class NodeCompatAssertionError extends Error {
constructor(message: string) {