convnum
    Preparing search index...

    Variable typeFromFnsConst

    typeFromFns: Record<NumType, (str: string) => number> = ...

    Mapping of type names to their "From" functions that convert strings to numbers. Each function takes a string representation and returns the corresponding numeric value. Used internally by convertFrom() but exported for direct access to specific converters.

    typeFromFns.decimal('123') // returns 123
    typeFromFns.roman('IV') // returns 4
    typeFromFns.latin_letter('A') // returns 1
    typeFromFns.hexadecimal('FF') // returns 255