UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

14 lines 334 B
/** * Returns true if the received number represents the empty value (i.e., zero). * @param {GxBigNumber} target * @returns boolean */ export const isEmptyBigNumber = (target) => { if (target.intNumberAll === BigInt(0)) { return true; } else { return false; } }; //# sourceMappingURL=isEmpty.js.map