Great library! Structured so much nicer than jquery-timeago for single-page js apps in terms of memory usage, etc. Feature request: support the formatting of future dates like "in 2 months". - Either something like the `allowFuture` option from jquery-timeago (although I think it should be on by default) - Or a built-in way to use Moment.js [`fromNow`](http://momentjs.com/docs/#/displaying/fromnow/) for the duration formatting. I'm currently doing it this way: ``` $.fn.timeago.Constructor.prototype.timeAgoInWords = function(timeString) { return moment(timeString).fromNow(); }; ```