ahrefs / melange-moment

Melange bindings for Moment.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

melange-moment

Melange bindings for Moment.js.

Based on bs-moment.

Status

This package is still 🚧 WIP 🚧, but new bindings are added as needed instead of actively. Feel free to create an issue or PR if you find anything missing.

Installation

Install opam package manager.

Then:

opam install melange-moment

The bindings support the following versions of the moment npm package, which should be installed separately:

  "dependencies": {
    "moment": "^2.26.0"
  }

Setup

Add melange-moment to the libraries field in your dune file:

; ...
  (libraries melange-moment)
; ...

Mutations

This binding takes an opinionated approach to mutations, e.g. moment().add, moment().startOf, and bind them with names like mutableAdd and mutableStartOf. To compensate that, there's an immutable version named add and startOf which takes a moment().clone first before applying the mutations.

Deprecations

Deprecated methods (e.g. moment().days in favor of moment().day) are not included in this binding.

About

Melange bindings for Moment.js

License:MIT License


Languages

Language:Reason 96.5%Language:Makefile 2.9%Language:JavaScript 0.6%