UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

15 lines 411 B
"use strict"; /** * Test Date for emptiness * @param {GxDate | GxDatetime} target * @return boolean */ Object.defineProperty(exports, "__esModule", { value: true }); exports.isEmpty = void 0; const core_1 = require("./core"); const isEmpty = (target) => { let aux = target.getTime() === core_1.EMPTY_DATE_VALUE.getTime(); return aux; }; exports.isEmpty = isEmpty; //# sourceMappingURL=isEmpty.js.map