Skip to content

Commit

Permalink
feat(type {}): add type object consists of are, is, guard pre…
Browse files Browse the repository at this point in the history
…fixed functions.
  • Loading branch information
sciborrudnicki committed Sep 20, 2021
1 parent 19ded18 commit dfb3df9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/lib/type.object.ts
Original file line number Diff line number Diff line change
@@ -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
});

0 comments on commit dfb3df9

Please sign in to comment.