Repositorio del curso CCOM4030 el semestre B91 del proyecto kilometro0
Luis f4296bcada project initialized 5 vuotta sitten
..
.eslintrc project initialized 5 vuotta sitten
.jscs.json project initialized 5 vuotta sitten
.npmignore project initialized 5 vuotta sitten
.travis.yml project initialized 5 vuotta sitten
CHANGELOG.md project initialized 5 vuotta sitten
LICENSE project initialized 5 vuotta sitten
Makefile project initialized 5 vuotta sitten
README.md project initialized 5 vuotta sitten
index.js project initialized 5 vuotta sitten
package.json project initialized 5 vuotta sitten
test.js project initialized 5 vuotta sitten

README.md

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