@portkey/validator
Introduction
Installation
- NPM
- YARN
npm install @portkey/validator
yarn add @portkey/validator
Usage
import { isNullish } from '@portkey/validator';
const res = isNullish(index)
Supplemental Code
const isNullish = (item: unknown): item is undefined | null => item === undefined || item === null;