res-date-fns

1.2.0 • Public • Published

ReScript bindings to date-fns

Getting started

npm install res-date-fns --save
or
yarn add res-date-fns

Add "res-date-fns" to bs-dependencies in your project's bsconfig.json

Differences from original date-fns API

In bindings the date parameter is moved to last position in a bunch of functions to work better with currying and make better use of pipe operator. Most of these can be seen from types. The ones that have same types but are different from date-fns:

laterDate |> DateFns.isAfter(earlierDate) /* true */
DateFns.isAfter(earlierDate, laterDate) /* true */

earlierDate |> DateFns.isBefore(laterDate) /* true */
DateFns.isBefore(laterDate, earlierDate) /* true */

middleDate |> DateFns.isWithinRange(earliestDate, latestDate) /* true */
DateFns.isWithinRange(earliestDate, latestDate, middleDate) /* true */

Package Sidebar

Install

npm i res-date-fns

Weekly Downloads

2

Version

1.2.0

License

MIT

Unpacked Size

35.1 kB

Total Files

5

Last publish

Collaborators

  • jaeholee.gl