date-fns

WebJar for date-fns

License

License

MIT
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

date-fns
Last Version

Last Version

1.30.1
Release Date

Release Date

Type

Type

jar
Description

Description

date-fns
WebJar for date-fns
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/date-fns/date-fns

Download date-fns

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/date-fns/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>date-fns</artifactId>
    <version>1.30.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/date-fns/
implementation 'org.webjars.bower:date-fns:1.30.1'
// https://jarcasting.com/artifacts/org.webjars.bower/date-fns/
implementation ("org.webjars.bower:date-fns:1.30.1")
'org.webjars.bower:date-fns:jar:1.30.1'
<dependency org="org.webjars.bower" name="date-fns" rev="1.30.1">
  <artifact name="date-fns" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='date-fns', version='1.30.1')
)
libraryDependencies += "org.webjars.bower" % "date-fns" % "1.30.1"
[org.webjars.bower/date-fns "1.30.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

date-fns

date-fns provides the most comprehensive, yet simple and consistent toolset
for manipulating JavaScript dates in a browser & Node.js.

๐Ÿš€   date-fns v2 is out   |    ๐Ÿ“–   Documentation   |    ๐Ÿง‘โ€๐Ÿ’ป   JavaScript Jobs

Powering >500k Projects & Generating ~7 Million Downloads/Week


It's like Lodash for dates

  • It has 180+ functions for all occasions.
  • Modular: Pick what you need. Works with webpack, Browserify, or Rollup and also supports tree-shaking.
  • Native dates: Uses existing native type. It doesn't extend core objects for safety's sake.
  • Immutable & Pure: Built using pure functions and always returns a new date instance.
  • TypeScript & Flow: Supports both Flow and TypeScript
  • I18n: Dozens of locales. Include only what you need.
  • and many more benefits
import { compareAsc, format } from 'date-fns'

format(new Date(2014, 1, 11), 'yyyy-MM-dd')
//=> '2014-02-11'

const dates = [
  new Date(1995, 6, 2),
  new Date(1987, 1, 11),
  new Date(1989, 6, 10),
]
dates.sort(compareAsc)
//=> [
//   Wed Feb 11 1987 00:00:00,
//   Mon Jul 10 1989 00:00:00,
//   Sun Jul 02 1995 00:00:00
// ]

The library is available as an npm package. To install the package run:

npm install date-fns --save
# or with yarn
yarn add date-fns

Docs

See date-fns.org for more details, API, and other docs.

JavaScript jobs by date-fns

We help people find their JavaScript Dream-Job. Learn more about it here.

๐Ÿ‘‹   Know someone who's looking for JavaScript devs? Recommend us a job!
โœ‰๏ธ   Get jobs worth sharing to your email! Subscribe to the newsletter.


License

MIT ยฉ Sasha Koss

org.webjars.bower

date-fns

Modern JavaScript date utility library

Versions

Version
1.30.1
1.29.0
1.28.5
1.24.0