UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 243 B
import { trim } from "./trim"; /** * Test string for emptiness or spaces only content * @param {string} target * @return boolean */ export const isEmpty = (target) => { return trim(target) === ""; }; //# sourceMappingURL=isEmpty.js.map