@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
12 lines • 342 B
JavaScript
;
/**
* Converts the given string to a boolean value
* @param str Input string
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.fromString = void 0;
const fromString = (target, str) => {
return str.toLowerCase() === "true";
};
exports.fromString = fromString;
//# sourceMappingURL=fromString.js.map