A library to work with date and time.
Time traveller is my attempt to provide a better api to work with date and time operations. My hope is to grow this library to make working with dates as enjoyable as possible.
Factory object to extend Date with some utility methods to do comparison and perform common operations on dates.
As of version 0.2.1 only has a now() factory method that's equivalent to doing new Date().
The returned date object is enhanced with some utility methods as described below.
The available add methods are:
addYears
addMonths
addDays
addHours
addMinutes
addSeconds
addMilliseconds
These methods can take either a positive or a negative number. A negative number will result in the substraction of the given period.
For example:
var d = new TimeTraveller().now();
console.log(d); //Mon, 04 Jul 2011 23:03:22 GMT
d.addYears(2);
console.log(d); //Thu, 04 Jul 2013 23:03:22 GMT
d.addYears(-4);
console.log(d); //Thu, 04 Jul 2009 23:03:22 GMT
There is a main isSame method that takes and can also have a single character that indicates precision.
var d = new TimeTraveller().now();
There are also methods for every precision that make a cleaner API.
isSameSecond
isSameMinute
isSameHour
isSameDay
isSameMonth
isSameYear
isSame
A simple object tha represents a period of time. As of version 0.2.1 a TimeSpan object can be created in 3 ways.
var d = new TimeTraveller().now();
var ts = d.differenceFrom(new Date());
var ts = new TimeSpan(1300);
var ts = new TimeSpan(date, secondDate);