TimeShift-js
TimeShift-js copied to clipboard
instanceof Date fails
To make this pass:
test("instanceof Date", function() {
ok(new TimeShift.Date() instanceof Date);
});
Do TimeShift.Date.prototype = new Date()
This does not seem to work. On IE11 I get still an error.