Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | /**
* Type detection beyond `typeof`
*
* Copyright (C) 2022 Dieter Raber
* https://opensource.org/licenses/MIT
*/
import isArray from "./isArray.js";
import isAsyncFunction from "./isAsyncFunction.js";
import isBigInt from "./isBigInt.js";
import isBlob from "./isBlob.js";
import isBoolean from "./isBoolean.js";
import isCallable from "./isCallable.js";
import isCustomElement from "./isCustomElement.js";
import isDate from "./isDate.js";
import isElement from "./isElement.js";
import isElementCollection from "./isElementCollection.js";
import isEmptyObject from "./isEmptyObject.js";
import isError from "./isError.js";
import isFunction from "./isFunction.js";
import isGenerator from "./isGenerator.js";
import isGeneratorFunction from "./isGeneratorFunction.js";
import isHtmlElement from "./isHtmlElement.js";
import isIterable from "./isIterable.js";
import isMap from "./isMap.js";
import isMathElement from "./isMathElement.js";
import isNull from "./isNull.js";
import isNumber from "./isNumber.js";
import isPlainObject from "./isPlainObject.js";
import isPromise from "./isPromise.js";
import isRegExp from "./isRegExp.js";
import isSet from "./isSet.js";
import isString from "./isString.js";
import isSvgElement from "./isSvgElement.js";
import isSymbol from "./isSymbol.js";
import isUndefined from "./isUndefined.js";
import isWeakMap from "./isWeakMap.js";
import isWeakSet from "./isWeakSet.js";
import getType from "./getType.js";
export default {
isArray,
isAsyncFunction,
isBigInt,
isBlob,
isBoolean,
isCallable,
isCustomElement,
isDate,
isElement,
isElementCollection,
isEmptyObject,
isError,
isFunction,
isGenerator,
isGeneratorFunction,
isHtmlElement,
isIterable,
isMap,
isMathElement,
isNull,
isNumber,
isPlainObject,
isPromise,
isRegExp,
isSet,
isString,
isSvgElement,
isSymbol,
isUndefined,
isWeakMap,
isWeakSet,
getType,
};
|