MCPcopy Create free account
hub / github.com/HelloCSV/HelloCSV / isUndefinedOrNull

Function isUndefinedOrNull

src/utils/index.ts:18–20  ·  view source on GitHub ↗
(a: any)

Source from the content-addressed store, hash-verified

16import { applyTransformations } from '@/transformers';
17
18export const isUndefinedOrNull = (a: any) => {
19 return a === null || a === undefined;
20};
21
22export const isPresent = (a: any) => !isUndefinedOrNull(a);
23

Callers 2

isPresentFunction · 0.85
isEmptyCellFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected