MCPcopy Index your code
hub / github.com/microsoft/SandDance / isnullorEmpty

Function isnullorEmpty

docs/app/js/sanddance-app.js:6231–6235  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

6229 return false;
6230}
6231function isnullorEmpty(value) {
6232 if (value == null) return true; //double equal sign to also catch undefined
6233 if (typeof value === "string" && value.length === 0) return true;
6234 return false;
6235}
6236class Exec {
6237 constructor(search, columns){
6238 this.columns = columns;

Callers 1

runExpressionOnColumnMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected