rescript-ms

0.0.5 • Public • Published

rescript-ms

Reimplementation of ms in ReScript.

Installation

# yarn
yarn add rescript-ms

# or npm
npm install --save rescript-ms

Then add rescript-validator to your bsconfig.json's bs-dependencies:

"bs-dependencies": [
  "rescript-ms"
]

Usage

Ms.parse("2 days"); // 172800000
Ms.parse("1d"); // 86400000
Ms.parse("10h"); // 36000000
Ms.parse("2.5 hrs"); // 9000000
Ms.parse("2h"); // 7200000
Ms.parse("1m"); // 60000
Ms.parse("5s"); // 5000
Ms.parse("1y"); // 31557600000
Ms.parse("100"); // 100
Ms.parse("-3 days"); // -259200000
Ms.parse("-1h"); // -3600000
Ms.parse("-200"); // -200

Ms.format(60000.0); // "1m"
Ms.format(2.0 *. 60000.0); // "2m"
Ms.format(-3.0 *. 60000.0); // "-3m"

Package Sidebar

Install

npm i rescript-ms

Weekly Downloads

0

Version

0.0.5

License

MIT

Unpacked Size

3.42 kB

Total Files

6

Last publish

Collaborators

  • after-finitude