租房小程序前端代码
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

3 months ago
  1. 'use strict';
  2. var test = require('tape');
  3. var runTests = require('./tests');
  4. test('as a function', function (t) {
  5. t.test('bad array/this value', function (st) {
  6. st['throws'](function () { Object.entries(undefined); }, TypeError, 'undefined is not an object');
  7. st['throws'](function () { Object.entries(null); }, TypeError, 'null is not an object');
  8. st.end();
  9. });
  10. runTests(Object.entries, t);
  11. t.end();
  12. });