Urara-Blog/node_modules/.pnpm-store/v3/files/5d/4bbdabe7ce3e8817398183099afb387382156c8f49050b72fea2cedb2103f02dad3c7fa5bd4bd23e40d723fc86e63162a76b1e7e48ec9a05cf870c5352e656
2022-08-14 01:14:53 +08:00

20 lines
605 B
Text

'use strict';
var padEnd = 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 array/this value', { skip: !hasStrictMode }, function (st) {
/* eslint no-useless-call: 0 */
st['throws'](function () { padEnd.call(undefined); }, TypeError, 'undefined is not an object');
st['throws'](function () { padEnd.call(null); }, TypeError, 'null is not an object');
st.end();
});
runTests(callBind(padEnd), t);
t.end();
});