租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
419 B

'use strict';
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
t.test('bad array/this value', function (st) {
st['throws'](function () { Object.entries(undefined); }, TypeError, 'undefined is not an object');
st['throws'](function () { Object.entries(null); }, TypeError, 'null is not an object');
st.end();
});
runTests(Object.entries, t);
t.end();
});