仲裁视频会议H5
hanchaobo 6fb8313ced 麦克风,摄像头,屏幕共享页面 2 年前
..
.github 视频会议 2 年前
test 视频会议 2 年前
.editorconfig 视频会议 2 年前
.eslintignore 视频会议 2 年前
.eslintrc 视频会议 2 年前
.nycrc 视频会议 2 年前
CHANGELOG.md 视频会议 2 年前
LICENSE 视频会议 2 年前
README.md 视频会议 2 年前
index.js 视频会议 2 年前
package.json 麦克风,摄像头,屏幕共享页面 2 年前

README.md

is-date-object Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

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