Quickjs.NumberJavaScript Number built-in object
This module mirrors the JavaScript Number API with prototype methods for number-to-string conversion.
Full options for formatting
val default_options : optionsDefault options: Free format, Auto exponent, radix 10, no minus zero
module Prototype : sig ... endNumber.prototype methods
val of_uint32 : Unsigned.UInt32.t -> stringof_uint32 n converts unsigned 32-bit integer n to string.
val of_uint64 : Unsigned.UInt64.t -> stringof_uint64 n converts unsigned 64-bit integer n to string.
of_int_radix ~radix n converts integer n to string in given radix.
of_int32_radix ~radix n converts 32-bit integer n to string in given radix.