You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 443B

123456789101112131415161718
  1. 'use strict';
  2. var trimLeft = require('../');
  3. var test = require('tape');
  4. var runTests = require('./tests');
  5. test('as a function', function (t) {
  6. t.test('bad array/this value', function (st) {
  7. st['throws'](function () { trimLeft(undefined, 'a'); }, TypeError, 'undefined is not an object');
  8. st['throws'](function () { trimLeft(null, 'a'); }, TypeError, 'null is not an object');
  9. st.end();
  10. });
  11. runTests(trimLeft, t);
  12. t.end();
  13. });