1.0.4 • Published 3 years ago

@based/pretty-date v1.0.4

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

Pretty date

Small package to nicely format a numerical date to a human readable date.

This package transform a numerical date into a human-readable format. There are several formats available.

Install

$ npm i @based/pretty-date

Usage

import { prettyDate } from '@based/pretty-date'

const time = Date.now() - 1e5 // a few minutes ago, as an epoch number

console.log(prettyDate(time,'date-time-human')) // => prints '17 minutes ago'
console.log(prettyDate(time,'date-time-text')) // => prints 'September 13, 2021, 9:37:44 AM'
console.log(prettyDate(time,'date-time')) // => prints '9:37 13/9/2021'
console.log(prettyDate(time,'date')) // => prints '13/9/2021'
console.log(prettyDate(time,'time')) // => prints '9:37'
console.log(prettyDate(time,'time-precise')) // => prints '9:37:44'