diff options
Diffstat (limited to 'std/node/_util.ts')
-rw-r--r-- | std/node/_util.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/std/node/_util.ts b/std/node/_util.ts index b21743541..78a9e1d8b 100644 --- a/std/node/_util.ts +++ b/std/node/_util.ts @@ -1,15 +1,11 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. export { promisify } from "./_util/_util_promisify.ts"; export { callbackify } from "./_util/_util_callbackify.ts"; -import { codes, errorMap } from "./_errors.ts"; +import { ERR_INVALID_ARG_TYPE, ERR_OUT_OF_RANGE, errorMap } from "./_errors.ts"; import * as types from "./_util/_util_types.ts"; export { types }; const NumberIsSafeInteger = Number.isSafeInteger; -const { - ERR_OUT_OF_RANGE, - ERR_INVALID_ARG_TYPE, -} = codes; const DEFAULT_INSPECT_OPTIONS = { showHidden: false, |