diff options
Diffstat (limited to 'ext/node/polyfills/_utils.ts')
-rw-r--r-- | ext/node/polyfills/_utils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/polyfills/_utils.ts b/ext/node/polyfills/_utils.ts index 78b9bdddc..b50c113e1 100644 --- a/ext/node/polyfills/_utils.ts +++ b/ext/node/polyfills/_utils.ts @@ -42,6 +42,7 @@ export function warnNotImplemented(msg?: string) { const message = msg ? `Warning: Not implemented: ${msg}` : "Warning: Not implemented"; + // deno-lint-ignore no-console console.warn(message); } |