date-str-timestamp
v1.0.2
Published
String date to UNIX timestamp
Downloads
11
Readme
date-str-timestamp
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'