Urara-Blog/node_modules/.pnpm-store/v3/files/75/d4049f73f96685402b8125987d01bfb95b7f513118207505bc094d685d95d61ca36440f6001f6744677e3ea27ab7fde1385b4862ade461cb4535b9f98bc890
2022-08-14 01:14:53 +08:00

18 lines
447 B
Text

'use strict';
var trimStart = 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 () { trimStart(undefined, 'a'); }, TypeError, 'undefined is not an object');
st['throws'](function () { trimStart(null, 'a'); }, TypeError, 'null is not an object');
st.end();
});
runTests(trimStart, t);
t.end();
});