UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 288 B
import { GxBigNumber } from "../types/gxbignumber"; /** * Converts the give string value to a numeric * @param {string} value * @returns GxBigNumber */ export const fromStringBigNumber = (target, value) => { return new GxBigNumber(value); }; //# sourceMappingURL=fromString.js.map