kronic-node
v0.0.1
Published
A dirt simple library for parsing and formatting human readable dates
Downloads
3
Readme
Kronic for Node.js
A dirt simple library for parsing and formatting human readable dates (Today, Yesterday, Last Monday). A port of https://github.com/xaviershay/kronic to make it into a Node.js module.
Usage
$ npm install kronic-node
Kronic = require 'kronic-node'
# Parse string into Date.
Kronic.parse 'Today'
# Human format from Date.
Kronic.format new Date()
Tests
$ npm test