/home/techb158/balavpn.abdallabala.com/node_modules/object.fromentries/test
NameSizeModeActions
implementation.js6450666editdlrm
index.js4440666editdlrm
shimmed.js16480666editdlrm
tests.js5840666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/object.fromentries/test/index.js (444B)
'use strict'; var fromEntries = require('../'); 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 () { fromEntries(undefined); }, TypeError, 'undefined is not an object'); st['throws'](function () { fromEntries(null); }, TypeError, 'null is not an object'); st.end(); }); runTests(fromEntries, t); t.end(); });