(value)
| 6229 | return false; |
| 6230 | } |
| 6231 | function 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 | } |
| 6236 | class Exec { |
| 6237 | constructor(search, columns){ |
| 6238 | this.columns = columns; |
no outgoing calls
no test coverage detected