We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
guardDefined
1 parent c2644e3 commit 8f7f66eCopy full SHA for 8f7f66e
packages/type/src/guard/lib/guard-is.object.ts
@@ -3,6 +3,7 @@ import { guardArray } from './guard-array.func';
3
import { guardBigInt } from './guard-big-int.func';
4
import { guardBoolean } from './guard-boolean.func';
5
import { guardClass } from './guard-class.func';
6
+import { guardDefined } from './guard-defined.func';
7
import { guardFunction } from './guard-function.func';
8
import { guardInstance } from './guard-instance.func';
9
import { guardKey } from './guard-key.func';
@@ -23,6 +24,7 @@ export const guardIs: GuardIs = {
23
24
bigint: guardBigInt,
25
boolean: guardBoolean,
26
class: guardClass,
27
+ defined: guardDefined,
28
function: guardFunction,
29
instance: guardInstance,
30
key: guardKey,
0 commit comments