@polkadot/util
Version:
A collection of useful utilities for @polkadot
32 lines (31 loc) • 1.09 kB
TypeScript
/**
* @summary Type checking utilities
*/
export { isArray } from './array';
export { isAscii } from './ascii';
export { isBigInt } from './bigInt';
export { isBn } from './bn';
export { isBuffer } from './buffer';
export { isBoolean } from './boolean';
export { isChildClass } from './childClass';
export { isCodec } from './codec';
export { isCompact } from './compact';
export { isError } from './error';
export { isFunction } from './function';
export { isHex } from './hex';
export { isInstanceOf } from './instanceOf';
export { isIp } from './ip';
export { isJsonObject } from './jsonObject';
export { isNull } from './null';
export { isNumber } from './number';
export { isObject } from './object';
export { isObservable } from './observable';
export { isPromise } from './promise';
export { isString } from './string';
export { isTestChain } from './testChain';
export { isToBigInt } from './toBigInt';
export { isToBn } from './toBn';
export { isU8a } from './u8a';
export { isUndefined } from './undefined';
export { isUtf8 } from './utf8';
export { isWasm } from './wasm';