Giter Site home page Giter Site logo

grantralls / date-fns Goto Github PK

View Code? Open in Web Editor NEW

This project forked from date-fns/date-fns

0.0 0.0 0.0 16.26 MB

⏳ Modern JavaScript date utility library ⌛️

Home Page: https://date-fns.org

License: MIT License

Shell 0.65% JavaScript 3.12% TypeScript 96.23%

date-fns's Introduction

⚠️ Warning: the current main represents v3 pre-release version of the library. See v2 branch.

If you're participating in hacktoberfest, please send your PRs to main.


date-fns

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


It's like Lodash for dates

  • It has 200+ 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.


License

MIT © Sasha Koss

date-fns's People

Contributors

102 avatar a-korzun avatar abnersajr avatar asia-t avatar beigelman avatar chalkdust avatar cubicwork avatar dkozickis avatar dolbyzerr avatar fturmel avatar imballinst avatar johnydays avatar jooola avatar juanangosto avatar kossnocorp avatar leedriscoll avatar leshakoss avatar lovelovedokidoki avatar lucashfs avatar marnusw avatar maximtop avatar minitesh avatar mprovenc avatar naridal avatar paraboom avatar rikkalo avatar tan75 avatar v-gutierrez avatar xkizer avatar zhirzh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.