bloodymary/node_modules/is-date-object
2020-05-17 12:54:26 +00:00
..
.eslintrc Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
.jscs.json Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
.npmignore Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
.travis.yml Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
CHANGELOG.md Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
index.js Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
LICENSE Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
Makefile Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
package.json Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
README.md Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00
test.js Changes of osx development v0.0.8640 5 2020-05-17 12:54:26 +00:00

is-date-object Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

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