UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

8 lines 210 B
/** * Converts the given string to a boolean value * @param str Input string */ export const fromString = (target, str) => { return str.toLowerCase() === "true"; }; //# sourceMappingURL=fromString.js.map