UNPKG

@design-automation/mobius-inline-funcs

Version:
8 lines 185 B
/** * Returns true is the value is undefined, false otherwise. * @param v Value to be checked. * */ export function isUndef(v: any): boolean { return v === undefined; }