diff options
Diffstat (limited to 'ext/node/polyfills/_fs/_fs_mkdtemp.ts')
-rw-r--r-- | ext/node/polyfills/_fs/_fs_mkdtemp.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/node/polyfills/_fs/_fs_mkdtemp.ts b/ext/node/polyfills/_fs/_fs_mkdtemp.ts index bc077048d..1e8df694a 100644 --- a/ext/node/polyfills/_fs/_fs_mkdtemp.ts +++ b/ext/node/polyfills/_fs/_fs_mkdtemp.ts @@ -1,6 +1,9 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // Copyright Node.js contributors. All rights reserved. MIT License. +// TODO(petamoriken): enable prefer-primordials for node polyfills +// deno-lint-ignore-file prefer-primordials + import { TextDecoder, TextEncoder } from "ext:deno_web/08_text_encoding.js"; import { existsSync } from "ext:deno_node/_fs/_fs_exists.ts"; import { mkdir, mkdirSync } from "ext:deno_node/_fs/_fs_mkdir.ts"; |