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 446B

1234567891011121314151617
  1. 'use strict';
  2. var trimRight = 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 () { trimRight(undefined, 'a'); }, TypeError, 'undefined is not an object');
  8. st['throws'](function () { trimRight(null, 'a'); }, TypeError, 'null is not an object');
  9. st.end();
  10. });
  11. runTests(trimRight, t);
  12. t.end();
  13. });