1.0.9 • Published 3 years ago

@cdellacqua/date-only v1.0.9

Weekly downloads
36
License
MIT
Repository
github
Last release
3 years ago

date-only

A DateOnly class for JavaScript

NPM Package

npm install @cdellacqua/date-only

Full documentation:

Highlights

Always serializes to YYYY-MM-DD

console.log(new DateOnly(2020, 0, 1).toString());
// -> 2020-01-01
console.log(new DateOnly(2020, 0, 1).toJSON());
// -> "2020-01-01"

Compatible with native Date object

console.log(DateOnly.fromDate(new Date(2020, 0, 1)).toString());
// -> 2020-01-01
console.log(new DateOnly(2020, 0, 1).toDate().toDateString());
// -> Wed Jan 01 2020
1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago