UNPKG

2.53 kBJavaScriptView Raw
1import castArray from './castArray';
2import clone from './clone';
3import cloneDeep from './cloneDeep';
4import cloneDeepWith from './cloneDeepWith';
5import cloneWith from './cloneWith';
6import eq from './eq';
7import gt from './gt';
8import gte from './gte';
9import isArguments from './isArguments';
10import isArray from './isArray';
11import isArrayBuffer from './isArrayBuffer';
12import isArrayLike from './isArrayLike';
13import isArrayLikeObject from './isArrayLikeObject';
14import isBoolean from './isBoolean';
15import isBuffer from './isBuffer';
16import isDate from './isDate';
17import isElement from './isElement';
18import isEmpty from './isEmpty';
19import isEqual from './isEqual';
20import isEqualWith from './isEqualWith';
21import isError from './isError';
22import isFinite from './isFinite';
23import isFunction from './isFunction';
24import isInteger from './isInteger';
25import isLength from './isLength';
26import isMap from './isMap';
27import isMatch from './isMatch';
28import isMatchWith from './isMatchWith';
29import isNaN from './isNaN';
30import isNative from './isNative';
31import isNil from './isNil';
32import isNull from './isNull';
33import isNumber from './isNumber';
34import isObject from './isObject';
35import isObjectLike from './isObjectLike';
36import isPlainObject from './isPlainObject';
37import isRegExp from './isRegExp';
38import isSafeInteger from './isSafeInteger';
39import isSet from './isSet';
40import isString from './isString';
41import isSymbol from './isSymbol';
42import isTypedArray from './isTypedArray';
43import isUndefined from './isUndefined';
44import isWeakMap from './isWeakMap';
45import isWeakSet from './isWeakSet';
46import lt from './lt';
47import lte from './lte';
48import toArray from './toArray';
49import toInteger from './toInteger';
50import toLength from './toLength';
51import toNumber from './toNumber';
52import toPlainObject from './toPlainObject';
53import toSafeInteger from './toSafeInteger';
54import toString from './toString';
55
56export default {
57 castArray, clone, cloneDeep, cloneDeepWith, cloneWith,
58 eq, gt, gte, isArguments, isArray,
59 isArrayBuffer, isArrayLike, isArrayLikeObject, isBoolean, isBuffer,
60 isDate, isElement, isEmpty, isEqual, isEqualWith,
61 isError, isFinite, isFunction, isInteger, isLength,
62 isMap, isMatch, isMatchWith, isNaN, isNative,
63 isNil, isNull, isNumber, isObject, isObjectLike,
64 isPlainObject, isRegExp, isSafeInteger, isSet, isString,
65 isSymbol, isTypedArray, isUndefined, isWeakMap, isWeakSet,
66 lt, lte, toArray, toInteger, toLength,
67 toNumber, toPlainObject, toSafeInteger, toString
68};