These are the Melange bindings for numeral. 🚧 It is not completed, we are adding bindings as we go. Doesn't follow semver at this point. 🚧
Install opam package manager.
Then:
opam install melange-numeral
The bindings support the version 2.0.6 of numeral
npm package, which should be installed separately:
"dependencies": {
"numeral": "2.0.6"
}
Add melange-numeral
to the libraries
in your dune
file:
; ...
(libraries melange-numeral)
; ...
module N = Numeral;
let myValue = N.make(`Str("11110.49"));
myValue
|. N.add(`Float(123.5))
|. N.subtract(`Int(1234))
|. N.format(~format="0[.]00", ())
|. Js.log; /* 9999.99 */
Check Numeral documentation