1- // Function.
1+ // Import: Function.
22import { isArray } from './is-array.func' ;
33import { isBigInt } from './is-big-int.func' ;
44import { isBoolean } from './is-boolean.func' ;
55import { isBooleanObject } from './is-boolean-object.func' ;
66import { isBooleanType } from './is-boolean-type.func' ;
77import { isClass } from './is-class.func' ;
8+ import { isDate } from './is-date.func' ;
89import { isDefined } from './is-defined.func' ;
10+ import { isFalse } from './is-false.func' ;
911import { isFunction } from './is-function.func' ;
1012import { isInstance } from './is-instance.func' ;
1113import { isKey } from './is-key.func' ;
1214import { isNull } from './is-null.func' ;
1315import { isNumber } from './is-number.func' ;
16+ import { isNumberBetween } from './is-number-between.func' ;
1417import { isNumberObject } from './is-number-object.func' ;
1518import { isNumberType } from './is-number-type.func' ;
1619import { isObject } from './is-object.func' ;
1720import { isObjectKey } from './is-object-key.func' ;
1821import { isObjectKeyIn } from './is-object-key-in.func' ;
1922import { isObjectKeys } from './is-object-keys.func' ;
2023import { isPrimitive } from './is-primitive.func' ;
24+ import { isRegExp } from './is-regexp.func' ;
2125import { isString } from './is-string.func' ;
26+ import { isStringLength } from './is-string-length.func' ;
2227import { isStringObject } from './is-string-object.func' ;
2328import { isStringType } from './is-string-type.func' ;
2429import { isSymbol } from './is-symbol.func' ;
2530import { isType } from './is-type.func' ;
2631import { isUndefined } from './is-undefined.func' ;
27- // Object.
32+ // Import: Object.
2833import { isNot } from '../not/lib/is-not.object' ;
29- // Interface.
34+ // Import: Interface.
3035import { Is } from '../interface/is.interface' ;
31- // `is`.
36+ import { isTrue } from './is-true.func' ;
37+ // Export: `is`.
3238export const is : Is = {
3339 array : isArray ,
3440 bigInt : isBigInt , // deprecated
@@ -37,24 +43,30 @@ export const is: Is = {
3743 booleanObject : isBooleanObject ,
3844 booleanType : isBooleanType ,
3945 class : isClass ,
46+ date : isDate , // From `4.2.0`
4047 defined : isDefined ,
48+ false : isFalse , // From `4.2.0`
4149 function : isFunction ,
4250 instance : isInstance ,
4351 key : isKey ,
4452 not : isNot ,
4553 null : isNull ,
4654 number : isNumber ,
55+ numberBetween : isNumberBetween , // From `4.2.0`
4756 numberObject : isNumberObject ,
4857 numberType : isNumberType ,
4958 object : isObject ,
5059 objectKey : isObjectKey ,
5160 objectKeyIn : isObjectKeyIn ,
5261 objectKeys : isObjectKeys ,
5362 primitive : isPrimitive ,
63+ regexp : isRegExp , // From `4.2.0`
5464 string : isString ,
65+ stringLength : isStringLength , // From `4.2.0`
5566 stringObject : isStringObject ,
5667 stringType : isStringType ,
5768 symbol : isSymbol ,
69+ true : isTrue , // From `4.2.0`
5870 type : isType ,
5971 undefined : isUndefined
6072} ;
0 commit comments