1 Star 0 Fork 0

animalcoder/Vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
animalcoder 提交于 2020-03-23 09:59 +08:00 . Vue6
'use strict';
var test = require('tape');
var isDate = require('../');
var hasSymbols = typeof Symbol === 'function' && typeof Symbol('') === 'symbol';
test('not Dates', function (t) {
t.notOk(isDate(), 'undefined is not Date');
t.notOk(isDate(null), 'null is not Date');
t.notOk(isDate(false), 'false is not Date');
t.notOk(isDate(true), 'true is not Date');
t.notOk(isDate(42), 'number is not Date');
t.notOk(isDate('foo'), 'string is not Date');
t.notOk(isDate([]), 'array is not Date');
t.notOk(isDate({}), 'object is not Date');
t.notOk(isDate(function () {}), 'function is not Date');
t.notOk(isDate(/a/g), 'regex literal is not Date');
t.notOk(isDate(new RegExp('a', 'g')), 'regex object is not Date');
t.end();
});
test('@@toStringTag', { skip: !hasSymbols || !Symbol.toStringTag }, function (t) {
var realDate = new Date();
var fakeDate = {
toString: function () { return String(realDate); },
valueOf: function () { return realDate.getTime(); }
};
fakeDate[Symbol.toStringTag] = 'Date';
t.notOk(isDate(fakeDate), 'fake Date with @@toStringTag "Date" is not Date');
t.end();
});
test('Dates', function (t) {
t.ok(isDate(new Date()), 'new Date() is Date');
t.end();
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/animalcoder/Vue.git
git@gitee.com:animalcoder/Vue.git
animalcoder
Vue
Vue
master

搜索帮助