Package Exports
- is-date-object
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-date-object) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-date-object 
Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
Example
var isDate = require('is-date-object');
var assert = require('assert');
assert.notOk(isDate(undefined));
assert.notOk(isDate(null));
assert.notOk(isDate(false));
assert.notOk(isDate(true));
assert.notOk(isDate(42));
assert.notOk(isDate('foo'));
assert.notOk(isDate(function () {}));
assert.notOk(isDate([]));
assert.notOk(isDate({}));
assert.notOk(isDate(/a/g));
assert.notOk(isDate(new RegExp('a', 'g')));
assert.ok(isDate(new Date()));
Tests
Simply clone the repo, npm install
, and run npm test