!github actionsactions-imageactions-url
!coveragecodecov-imagecodecov-url
!dependency status56
!dev dependency status78
!Licenselicense-imagelicense-url
!Downloadsdownloads-imagedownloads-url
!npm badge111
Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.
!npm badge111
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