Closed rmdort closed 4 years ago
Should this be extended to null and undefined values. I think thats how excel or google sheets does the check
null
undefined
value === null || value === void 0 || value === ''
ISBLANK: (value) => { if (!value.ref) return false; value = H.accept(value); return typeof value === 'string' && value.length === 0; }
I'll take a look later.
Released https://github.com/LesterLyu/fast-formula-parser/releases/tag/1.0.18
Should this be extended to
null
andundefined
values. I think thats how excel or google sheets does the checkvalue === null || value === void 0 || value === ''