UNPKG

set.prototype.difference

Version:

An ESnext spec-compliant `Set.prototype.difference` shim/polyfill/replacement that works as far down as ES3

18 lines (13 loc) 412 B
'use strict'; var index = require('../'); var test = require('tape'); var runTests = require('./tests'); test('as a function', function (t) { t.test('bad receiver', function (st) { st['throws'](function () { index(undefined); }, TypeError, 'undefined is not an object'); st['throws'](function () { index(null); }, TypeError, 'null is not an object'); st.end(); }); runTests(index, t); t.end(); });