@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
13 lines • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.fromString = void 0;
/**
* Converts the give string value to a numeric
* @param {string} value
* @returns number
*/
const fromString = (target, value) => {
return Number(Number.parseFloat(value));
};
exports.fromString = fromString;
//# sourceMappingURL=fromString.js.map