UNPKG

3.85 kBTypeScriptView Raw
1import castArray from "./castArray";
2import clone from "./clone";
3import cloneDeep from "./cloneDeep";
4import cloneDeepWith from "./cloneDeepWith";
5import cloneWith from "./cloneWith";
6import conformsTo from "./conformsTo";
7import eq from "./eq";
8import gt from "./gt";
9import gte from "./gte";
10import isArguments from "./isArguments";
11import isArray from "./isArray";
12import isArrayBuffer from "./isArrayBuffer";
13import isArrayLike from "./isArrayLike";
14import isArrayLikeObject from "./isArrayLikeObject";
15import isBoolean from "./isBoolean";
16import isBuffer from "./isBuffer";
17import isDate from "./isDate";
18import isElement from "./isElement";
19import isEmpty from "./isEmpty";
20import isEqual from "./isEqual";
21import isEqualWith from "./isEqualWith";
22import isError from "./isError";
23import isFinite from "./isFinite";
24import isFunction from "./isFunction";
25import isInteger from "./isInteger";
26import isLength from "./isLength";
27import isMap from "./isMap";
28import isMatch from "./isMatch";
29import isMatchWith from "./isMatchWith";
30import isNaN from "./isNaN";
31import isNative from "./isNative";
32import isNil from "./isNil";
33import isNull from "./isNull";
34import isNumber from "./isNumber";
35import isObject from "./isObject";
36import isObjectLike from "./isObjectLike";
37import isPlainObject from "./isPlainObject";
38import isRegExp from "./isRegExp";
39import isSafeInteger from "./isSafeInteger";
40import isSet from "./isSet";
41import isString from "./isString";
42import isSymbol from "./isSymbol";
43import isTypedArray from "./isTypedArray";
44import isUndefined from "./isUndefined";
45import isWeakMap from "./isWeakMap";
46import isWeakSet from "./isWeakSet";
47import lt from "./lt";
48import lte from "./lte";
49import toArray from "./toArray";
50import toFinite from "./toFinite";
51import toInteger from "./toInteger";
52import toLength from "./toLength";
53import toNumber from "./toNumber";
54import toPlainObject from "./toPlainObject";
55import toSafeInteger from "./toSafeInteger";
56import toString from "./toString";
57
58declare const defaultExport: {
59 castArray: typeof castArray;
60 clone: typeof clone;
61 cloneDeep: typeof cloneDeep;
62 cloneDeepWith: typeof cloneDeepWith;
63 cloneWith: typeof cloneWith;
64 conformsTo: typeof conformsTo;
65 eq: typeof eq;
66 gt: typeof gt;
67 gte: typeof gte;
68 isArguments: typeof isArguments;
69 isArray: typeof isArray;
70 isArrayBuffer: typeof isArrayBuffer;
71 isArrayLike: typeof isArrayLike;
72 isArrayLikeObject: typeof isArrayLikeObject;
73 isBoolean: typeof isBoolean;
74 isBuffer: typeof isBuffer;
75 isDate: typeof isDate;
76 isElement: typeof isElement;
77 isEmpty: typeof isEmpty;
78 isEqual: typeof isEqual;
79 isEqualWith: typeof isEqualWith;
80 isError: typeof isError;
81 isFinite: typeof isFinite;
82 isFunction: typeof isFunction;
83 isInteger: typeof isInteger;
84 isLength: typeof isLength;
85 isMap: typeof isMap;
86 isMatch: typeof isMatch;
87 isMatchWith: typeof isMatchWith;
88 isNaN: typeof isNaN;
89 isNative: typeof isNative;
90 isNil: typeof isNil;
91 isNull: typeof isNull;
92 isNumber: typeof isNumber;
93 isObject: typeof isObject;
94 isObjectLike: typeof isObjectLike;
95 isPlainObject: typeof isPlainObject;
96 isRegExp: typeof isRegExp;
97 isSafeInteger: typeof isSafeInteger;
98 isSet: typeof isSet;
99 isString: typeof isString;
100 isSymbol: typeof isSymbol;
101 isTypedArray: typeof isTypedArray;
102 isUndefined: typeof isUndefined;
103 isWeakMap: typeof isWeakMap;
104 isWeakSet: typeof isWeakSet;
105 lt: typeof lt;
106 lte: typeof lte;
107 toArray: typeof toArray;
108 toFinite: typeof toFinite;
109 toInteger: typeof toInteger;
110 toLength: typeof toLength;
111 toNumber: typeof toNumber;
112 toPlainObject: typeof toPlainObject;
113 toSafeInteger: typeof toSafeInteger;
114 toString: typeof toString;
115};
116export default defaultExport;