isNotNil
주어진 인자가 null
또는 undefined
가 아닌지 검사하고, 아니라면 주어진 인자 타입 그대로 좁혀주는 함수입니다.
Code
Interface
typescript
const isNotNil: <T>(val: T | null | undefined) => val is T
Usage
typescript
import { isNotNil } from '@modern-kit/utils';
isNotNil(1); // true
isNotNil(false); // true
isNotNil("str"); // true
isNotNil({}); // true
isNotNil(undefined); // false
isNotNil(null); // false