native.js 419 B

12345678910111213141516
  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. });