1.0.2 • Published 2 years ago

date-str-timestamp v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

date-str-timestamp

Tests

Convert date in DD/MM/YYYY string format to UNIX timestamp

Install using npm i date-str-timestamp

Usage

Date to timestamp

const {dateToTimestamp} = require('date-str-timestamp')
date = '20/11/2022'
timestamp = dateToTimestamp(date)
console.log(timestamp) // Output should be 1668902400

Timestamp to date

const {timestampToDate} = require('date-str-timestamp')
timestamp = 1668902400
date = timestampToDate(timestamp)
console.log(date) // Output should be '20/11/2022'
1.0.2

2 years ago

1.0.1

3 years ago

1.0.0

3 years ago