no hint, then it behaves as if the hint were Number, unless O is a Date object (see 15.9.6), in which case it behaves as if the hint were String.” es5.github.com/x8.html#x8.12.8
new Tempus("Wed, 22 Feb 2012 12:35:25 +0000"); d = new Tempus("Wed, 22 Feb 2012 12:35:25 GMT"); d.toISO8601String(); /* or */ d.toString("ISO8601"); -> "2012-02-22T12:35:25.519+0000" d.toW3CString() /* or */ d.toString("W3C"); -> "2012-02-22T12:35:25+00:00" /* So many more too */