date-str-timestamp

1.0.2 • Public • Published

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'

Readme

Keywords

Package Sidebar

Install

npm i date-str-timestamp

Weekly Downloads

3

Version

1.0.2

License

ISC

Unpacked Size

3 kB

Total Files

6

Last publish

Collaborators

  • ragedpranav19
  • rutujak26