blob: 7d1a9b60d4748a998bea5ff3e5cadb79b082cbfa [file] [log] [blame]
'use strict';
var isDate = require('./is-date');
module.exports = function (x) {
if (!isDate(x)) throw new TypeError(x + " is not a Date object");
return x;
};