UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

9 lines 234 B
/** * Returns true if the received number represents the empty value (i.e., zero). * @param {number} target * @returns boolean */ export const isEmpty = (target) => { return target === 0; }; //# sourceMappingURL=isEmpty.js.map