UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

14 lines 381 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isEmpty = void 0; const trim_1 = require("./trim"); /** * Test string for emptiness or spaces only content * @param {string} target * @return boolean */ const isEmpty = (target) => { return (0, trim_1.trim)(target) === ""; }; exports.isEmpty = isEmpty; //# sourceMappingURL=isEmpty.js.map