nateriver520 / nicedate

nicely formatted dates (used by phoenix)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nicedate

display nicely, but tersely formatted dates.

example

var nicedate = require('nicedate')

console.log(nicedate(Date.now()))
// just now

//one second ago
console.log(nicedate(Date.now() - 1000))
// 1s

//one week ago
console.log(nicedate(Date.now() - 1000*60*24*7))
// 1w

//etc...

License

MIT

About

nicely formatted dates (used by phoenix)

License:MIT License


Languages

Language:JavaScript 100.0%