@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
12 lines • 304 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isEmpty = void 0;
/**
* Returns wether the received parameter is the empty value or not
* @param b
*/
const isEmpty = (b) => {
return b === false;
};
exports.isEmpty = isEmpty;
//# sourceMappingURL=isEmpty.js.map