blob: 6ba236ecbc0783b192941477dde8672acff993a3 [file] [log] [blame]
'use strict';
var toString = Object.prototype.toString
, id = toString.call(new Date());
module.exports = function (x) {
return (x && ((x instanceof Date) || (toString.call(x) === id))) || false;
};