@polkadot/util
Version:
A collection of useful utilities for @polkadot
34 lines (33 loc) • 1.27 kB
JavaScript
// Copyright 2017-2022 @polkadot/util authors & contributors
// SPDX-License-Identifier: Apache-2.0
/**
* @summary Type checking utilities
*/
export { isArray } from "./array.js";
export { isAscii } from "./ascii.js";
export { isBigInt } from "./bigInt.js";
export { isBn } from "./bn.js";
export { isBuffer } from "./buffer.js";
export { isBoolean } from "./boolean.js";
export { isChildClass } from "./childClass.js";
export { isCodec } from "./codec.js";
export { isCompact } from "./compact.js";
export { isError } from "./error.js";
export { isFunction } from "./function.js";
export { isHex } from "./hex.js";
export { isInstanceOf } from "./instanceOf.js";
export { isIp } from "./ip.js";
export { isJsonObject } from "./jsonObject.js";
export { isNull } from "./null.js";
export { isNumber } from "./number.js";
export { isObject } from "./object.js";
export { isObservable } from "./observable.js";
export { isPromise } from "./promise.js";
export { isString } from "./string.js";
export { isTestChain } from "./testChain.js";
export { isToBigInt } from "./toBigInt.js";
export { isToBn } from "./toBn.js";
export { isU8a } from "./u8a.js";
export { isUndefined } from "./undefined.js";
export { isUtf8 } from "./utf8.js";
export { isWasm } from "./wasm.js";