lightballer / date-lib

Library for simplify working with dates

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Date-Lib

Library for simplify working with dates: convert to different formats, count days from any time to today.

Usage

Import library:

const date = require('date-lib');

Current date in users format:

date.format('MM.DD.YYYY, h:mm:ss'); // return current date '5.6.2020, 02:37:40'

Count days from some day to today:

date.fromNow('2016-6-2'); // 1581

Convert date from one format to another:

const day = '12-04-2020'
const Converter = date.Converter;
const converter = new Converter(day);
converter.from('DD-MM-YYYY').to('MM/DD/YYYY'); // return '04/12/2020'

Compare any date with current date (can return true or false):

isBefore('2001/08/19'); // return true
isAfter('2025:4:3'); // return true

Contributing

To contribute in my project you should fork it to your account, make changes and send a pull request where you need to describe what changes you make and why it’s important. Feel free to contact me and discuss your contributing.

About

Library for simplify working with dates

License:MIT License


Languages

Language:JavaScript 100.0%