diff --git a/src/lib/type.object.ts b/src/lib/type.object.ts new file mode 100644 index 00000000..1e177e20 --- /dev/null +++ b/src/lib/type.object.ts @@ -0,0 +1,23 @@ +// Object. +import { are } from '../are/lib/are.object'; +import { guard } from '../guard/lib/guard.object'; +import { is } from '../is/lib/is.object'; +/** + * The `object` consists of `are`, `is` and `guard` objects. + */ +export const type = Object.freeze({ + /** + * The object consists of `are` functions. + */ + are, + + /** + * The object consists of `is` functions. + */ + is, + + /** + * The `object` consists of `guard` functions. + */ + guard +});