Skip to content

ahrefs/melange-numeral

Repository files navigation

melange-numeral

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

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"
  }

Setup

Add melange-numeral to the libraries in your dune file:

; ...
  (libraries melange-numeral)
; ...

Usage Example

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 */

Docs

Check Numeral documentation

Alternatives