UNPKG

@sapphire/utilities

Version:
10 lines (7 loc) 274 B
import { Nullish } from './types.mjs'; /** * Checks whether or not a value is `null` or `undefined` * @param value The value to check */ declare function isNullOrUndefined(value: unknown): value is Nullish; export { isNullOrUndefined, isNullOrUndefined as isNullish };