2020-09-21 08:26:41 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-06-08 13:26:52 -04:00
|
|
|
export { promisify } from "./_util/_util_promisify.ts";
|
2020-05-20 10:29:05 -04:00
|
|
|
export { callbackify } from "./_util/_util_callbackify.ts";
|
2020-09-22 16:07:35 -04:00
|
|
|
import { codes, errorMap } from "./_errors.ts";
|
2020-06-01 18:43:43 -04:00
|
|
|
import * as types from "./_util/_util_types.ts";
|
|
|
|
export { types };
|
2020-05-20 10:29:05 -04:00
|
|
|
|
2020-09-22 16:07:35 -04:00
|
|
|
const NumberIsSafeInteger = Number.isSafeInteger;
|
|
|
|
const {
|
|
|
|
ERR_OUT_OF_RANGE,
|
|
|
|
ERR_INVALID_ARG_TYPE,
|
|
|
|
} = codes;
|
|
|
|
|
2020-09-14 10:22:07 -04:00
|
|
|
const DEFAULT_INSPECT_OPTIONS = {
|
|
|
|
showHidden: false,
|
|
|
|
depth: 2,
|
|
|
|
colors: false,
|
|
|
|
customInspect: true,
|
|
|
|
showProxy: false,
|
|
|
|
maxArrayLength: 100,
|
|
|
|
maxStringLength: Infinity,
|
|
|
|
breakLength: 80,
|
|
|
|
compact: 3,
|
|
|
|
sorted: false,
|
|
|
|
getters: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
inspect.defaultOptions = DEFAULT_INSPECT_OPTIONS;
|
|
|
|
inspect.custom = Deno.customInspect;
|
|
|
|
|
|
|
|
// TODO(schwarzkopfb): make it in-line with Node's implementation
|
|
|
|
// Ref: https://nodejs.org/dist/latest-v14.x/docs/api/util.html#util_util_inspect_object_options
|
2020-08-12 14:03:51 -04:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
export function inspect(object: unknown, ...opts: any): string {
|
2020-09-14 10:22:07 -04:00
|
|
|
opts = { ...DEFAULT_INSPECT_OPTIONS, ...opts };
|
2020-08-12 14:03:51 -04:00
|
|
|
return Deno.inspect(object, {
|
2020-09-14 10:22:07 -04:00
|
|
|
depth: opts.depth,
|
|
|
|
iterableLimit: opts.maxArrayLength,
|
|
|
|
compact: !!opts.compact,
|
|
|
|
sorted: !!opts.sorted,
|
|
|
|
showProxy: !!opts.showProxy,
|
2020-08-12 14:03:51 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-12 15:51:14 -05:00
|
|
|
export function isArray(value: unknown): boolean {
|
|
|
|
return Array.isArray(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isBoolean(value: unknown): boolean {
|
|
|
|
return typeof value === "boolean" || value instanceof Boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isNull(value: unknown): boolean {
|
|
|
|
return value === null;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isNullOrUndefined(value: unknown): boolean {
|
|
|
|
return value === null || value === undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isNumber(value: unknown): boolean {
|
|
|
|
return typeof value === "number" || value instanceof Number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isString(value: unknown): boolean {
|
|
|
|
return typeof value === "string" || value instanceof String;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isSymbol(value: unknown): boolean {
|
|
|
|
return typeof value === "symbol";
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isUndefined(value: unknown): boolean {
|
|
|
|
return value === undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isObject(value: unknown): boolean {
|
|
|
|
return value !== null && typeof value === "object";
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isError(e: unknown): boolean {
|
|
|
|
return e instanceof Error;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isFunction(value: unknown): boolean {
|
|
|
|
return typeof value === "function";
|
|
|
|
}
|
|
|
|
|
|
|
|
export function isRegExp(value: unknown): boolean {
|
|
|
|
return value instanceof RegExp;
|
|
|
|
}
|
2020-02-10 18:19:48 -05:00
|
|
|
|
2020-04-08 18:44:39 -04:00
|
|
|
export function isPrimitive(value: unknown): boolean {
|
|
|
|
return (
|
|
|
|
value === null || (typeof value !== "object" && typeof value !== "function")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-22 16:07:35 -04:00
|
|
|
export function getSystemErrorName(code: number): string | undefined {
|
|
|
|
if (typeof code !== "number") {
|
|
|
|
throw new ERR_INVALID_ARG_TYPE("err", "number", code);
|
|
|
|
}
|
|
|
|
if (code >= 0 || !NumberIsSafeInteger(code)) {
|
|
|
|
throw new ERR_OUT_OF_RANGE("err", "a negative integer", code);
|
|
|
|
}
|
|
|
|
return errorMap.get(code)?.[0];
|
|
|
|
}
|
|
|
|
|
2020-05-20 10:35:51 -04:00
|
|
|
import { _TextDecoder, _TextEncoder } from "./_utils.ts";
|
|
|
|
|
|
|
|
/** The global TextDecoder */
|
|
|
|
export type TextDecoder = import("./_utils.ts")._TextDecoder;
|
|
|
|
export const TextDecoder = _TextDecoder;
|
|
|
|
|
|
|
|
/** The global TextEncoder */
|
|
|
|
export type TextEncoder = import("./_utils.ts")._TextEncoder;
|
|
|
|
export const TextEncoder = _TextEncoder;
|