UNPKG

645 BJavaScriptView Raw
1'use strict';
2
3var implementation = require('../implementation');
4var callBind = require('call-bind');
5var test = require('tape');
6var hasStrictMode = require('has-strict-mode')();
7var runTests = require('./tests');
8
9test('as a function', function (t) {
10 t.test('bad array/this value', { skip: !hasStrictMode }, function (st) {
11 /* eslint no-useless-call: 0 */
12 st['throws'](function () { implementation.call(undefined); }, TypeError, 'undefined is not an object');
13 st['throws'](function () { implementation.call(null); }, TypeError, 'null is not an object');
14 st.end();
15 });
16
17 runTests(callBind(implementation, Object), t);
18
19 t.end();
20});