@@ -145,7 +145,7 @@ Checks if **any** value is
145145* a ` class ` with [ ` isClass() ` ] ( #isclass ) .
146146* a [ ` Date ` ] [ js-date ] with [ ` isDate() ` ] ( #isdate ) .
147147* defined with [ ` isDefined() ` ] ( #isdefined ) .
148- * ` false ` with [ ` isFalse() ` ] ( #isfalse ) .
148+ * a ` false ` value with [ ` isFalse() ` ] ( #isfalse ) .
149149* a ` function ` with [ ` isFunction() ` ] ( #isfunction ) .
150150* a generic type ` instance ` with [ ` isInstance() ` ] ( #isinstance ) .
151151* a [ ` Key ` ] [ key ] type with [ ` isKey() ` ] ( #iskey ) .
@@ -158,16 +158,16 @@ Checks if **any** value is
158158* an ` object ` with its own specified [ ` Key ` ] [ key ] with [ ` isObjectKey() ` ] ( #isobjectkey ) .
159159* an ` object ` with the [ ` Key ` ] [ key ] by using the [ ` in ` ] [ js-in-operator ] operator with [ ` isObjectKeyIn() ` ] ( #isobjectkeyin ) .
160160* an ` object ` with some of its own specified [ ` Key ` ] [ key ] with [ ` isObjectKeys() ` ] ( #isobjectkeys ) .
161- * a one of the primitive ` boolean ` , ` bigint ` , ` number ` , ` string ` with [ ` isPrimitive() ` ] ( #isprimitive ) .
161+ * primitive of a [ ` Primitive ` ] ( #primitive ) type with [ ` isPrimitive() ` ] ( #isprimitive ) .
162162* a regular expression of a ` RegExp ` type with [ ` isRegExp() ` ] ( #isregexp ) .
163163* a ` string ` with [ ` isString() ` ] ( #isstring ) .
164164* a ` string ` with the specified length with [ ` isStringLength ` ] ( #isstringlength ) .
165165* an ` object ` type and instance of [ ` String ` ] [ js-string ] and [ ` Object ` ] [ js-object ] with [ ` isStringObject() ` ] ( #isstringobject ) .
166166* a ` string ` type and ** not** instance of [ ` String ` ] [ js-string ] and [ ` Object ` ] [ js-object ] with [ ` isStringType() ` ] ( #isstringtype ) .
167167* a ` symbol ` with [ ` isSymbol() ` ] ( #issymbol ) .
168- * ` true ` with [ ` isTrue() ` ] ( #istrue ) .
168+ * a ` true ` value with [ ` isTrue() ` ] ( #istrue ) .
169169* a generic type instance, ` function ` , ` object ` or primitive type with [ ` isType() ` ] ( #istype ) .
170- * a ` undefined ` with [ ` isUndefined() ` ] ( #isundefined ) .
170+ * ` undefined ` with [ ` isUndefined() ` ] ( #isundefined ) .
171171* a generic type value is
172172* ** not**
173173 * a ` boolean ` with [ ` isNotBoolean() ` ] ( #isnotboolean )
@@ -215,7 +215,13 @@ Guard
215215* [ Skeleton] ( #skeleton )
216216* [ Callback] ( #callback )
217217* [ Check] ( #check )
218+ * Object
219+ * [ ` are ` ] ( #are )
220+ * [ ` is ` ] ( #is )
221+ * [ ` isNot ` ] ( #isnot )
218222* [ Guard] ( #guard )
223+ * Object
224+ * [ ` guard ` ] ( #guard )
219225* [ Common types] ( #common-types )
220226* [ Experimental] ( #experimental )
221227 * [ BigIntObject] ( #bigintobject )
@@ -354,8 +360,7 @@ The object contains prefixed with `is` functions and prefixed with `isNot` funct
354360
355361![ update] [ update ]
356362
357- ` 4.2.0 ` : Adds ` isDate() ` , ` isFalse() ` , ` isNumberBetween() ` , ` isRegExp() ` , ` isStringLength() ` , ` isTrue() ` .
358- ` 4.1.0 ` : Adds ` objectKeys ` as [ ` isObjectKeys() ` ] ( #isobjectkeys ) .
363+ ` 4.2.0 ` : Adds [ ` isDate() ` ] ( #isdate ) , [ ` isFalse() ` ] ( #isfalse ) , [ ` isNumberBetween() ` ] ( #isnumberbetween ) , [ ` isRegExp() ` ] ( #isregexp ) , [ ` isStringLength() ` ] ( #isstringlength ) , [ ` isTrue() ` ] ( #istrue ) .
359364
360365``` typescript
361366const is: Is = {
0 commit comments