UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

9 lines 232 B
/** * Converts the give string value to a numeric * @param {string} value * @returns number */ export const fromString = (target, value) => { return Number(Number.parseFloat(value)); }; //# sourceMappingURL=fromString.js.map