UNPKG
@atlaskit/build-utils
Version:
latest (2.6.2)
2.6.2
2.6.1
2.6.0
2.5.0
2.4.0
2.3.0
2.2.7
2.2.6
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.12.1
1.12.0
1.11.0
1.7.0
1.3.0
1.2.0
1.0.0
Collection of utilities to used during the release process of Atlaskit
@atlaskit/build-utils
/
guards.ts
7 lines
(5 loc)
•
212 B
text/typescript
View Raw
1
2
3
4
5
6
7
/** Typescript type guards */
/* A simple defined check with type guard that works well with Array.prototype.filter */
export function
isDefined
<
T
>(
arg: T | undefined |
null
): arg
is
T
{
return
arg !=
null
; }