Documentation
    Preparing search index...

    Variable parseBigIntConst

    parseBigInt: Parser<[value: string | number], bigint> = ...

    Parses a string as a bigint in base 10.

    Unlike parseSafeInteger, this function does not support specifying the radix; it is always base 10. This method supports the scientific notation (e.g. 5e1 produces 50n). The Scientific notation is only allowed in base 10.

    The string to parse as a safe integer

    The corresponding bigint value