#Fancy Timestamp
Use this to create natural language for your unix timestamps (similar to Facebook's)
Plays well with browserify
#Usage
Install with NPM and require where needed.
npm install fancy-timestamp
var fancyTimestamp = require('fancy-timestamp');
Fancy Timestamp can accept normal timestamps composed of seconds.
var normalTimestamp = 1342123755;
var fancyTimestampString = fancyTimestamp(normalTimestamp);
It can also accept timestamps composed of milliseconds such as the ones JavaScript defaults to. To parse millisecond timestamps pass a second parameter of 'true'.
var javascriptTimestamp = (new Date()).getTime();
fancyTimestampString = fancyTimestamp(javascriptTimestamp, true);
Where appropriate, fancy-timestamp will apply the appropriate ending to the natural language text such as 'tomorrow' or 'away' for dates in the future, and 'yesterday' or 'ago' for dates in the past.
#License
MIT license