1.0.0 • Published 9 years ago

simple-timeago v1.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

simple-timeago Build Status

Create simple human-readable fuzzy-timestamps

example

var timeAgo = require('simple-timeago');

var startTime = new Date();
var thirtyOneMinutesAgo = new Date(startTime - 1.86e+6);

console.log(timeAgo(thirtyOneMinutesAgo));
// 31 minutes ago

methods

var timeAgo = require('simple-timeago');

timeAgo(since, until)

  • since - Date object to calculate time-since from.
  • until - Date object to calculate time-since to. (Optional, defaults to now (new Date()))

Returns a string of fuzzy time.

install

npm install simple-timeago

test

npm test

license

MIT