0.1.6 ā€¢ Published 1 year ago

@ahrefs/bs-numeral v0.1.6

Weekly downloads
34
License
MIT
Repository
github
Last release
1 year ago

bs-numeral

This is Bucklescript bindings for numeral. šŸš§ It is not completed, we are adding bindings as we go. Doesn't follow semver at this point. šŸš§

Install, npm

yarn add @ahrefs/bs-numeral

Setup

Add bs-numeral to bs-depenencies in your bsconfig.json!

{
  /* ... */
  "bs-dependencies": [
    "@ahrefs/bs-numeral"
  ],
  /* ... */
}

Usage Example

module N = BsNumeral;

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

0.1.6

1 year ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago