@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
13 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isEmpty = void 0;
/**
* Returns true if the received number represents the empty value (i.e., zero).
* @param {number} target
* @returns boolean
*/
const isEmpty = (target) => {
return target === 0;
};
exports.isEmpty = isEmpty;
//# sourceMappingURL=isEmpty.js.map