UNPKG

@mapcss/preset-svg

Version:
20 lines (19 loc) 341 B
/** * Whatever argument is type of `null` or not * * @param value - Input any value * @returns The result of `value === null` * * @example * ```ts * import { isNull } from './mod.ts' * isNull(null) // true * isNull(undefined) // false * ``` * * @beta */ function isNull(value) { return value === null; } export { isNull };