1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/has/test/index.js

17 lines
558 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
'use strict';
var test = require('tape');
var has = require('../');
test('has', function (t) {
t.equal(has({}, 'hasOwnProperty'), false, 'object literal does not have own property "hasOwnProperty"');
t.equal(has(Object.prototype, 'hasOwnProperty'), true, 'Object.prototype has own property "hasOwnProperty"');
2024-01-16 21:26:16 +08:00
t['throws'](function () {
has(null, 'throws');
}, TypeError, 'calling has on null throws TypeError');
t['throws'](function () {
has(void 0, 'throws');
}, TypeError, 'calling has on undefined throws TypeError');
2023-12-18 13:12:25 +08:00
t.end();
});