Urara-Blog/node_modules/.pnpm-store/v3/files/ba/20877bf484618a03a2132a87f8ca975f4a4f0e8bcfbb26561ccbb972d5f7698d7ea0322c6e4ad57f0735955b5af3c1f55dd003410a67e60a70f7f4aa39e399
2022-08-14 01:14:53 +08:00

19 lines
603 B
Text

'use strict';
var implementation = require('../implementation');
var callBind = require('call-bind');
var test = require('tape');
var hasStrictMode = require('has-strict-mode')();
var runTests = require('./tests');
test('as a function', function (t) {
t.test('bad first arg/receiver', { skip: !hasStrictMode }, function (st) {
st['throws'](function () { implementation(undefined); }, TypeError, 'undefined is not an object');
st['throws'](function () { implementation(null); }, TypeError, 'null is not an object');
st.end();
});
runTests(callBind(implementation, Object), t);
t.end();
});