UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

3 lines 114 B
export default function isNullOrUndefined(value: any): boolean { return value === null || value === undefined };