UNPKG

591 BJavaScriptView Raw
1'use strict';
2
3var SetPoly = require('../polyfill');
4
5module.exports = function (t, a) {
6 var set;
7 a.throws(function () { t(undefined); }, TypeError, "Undefined");
8 a.throws(function () { t(null); }, TypeError, "Null");
9 a.throws(function () { t(true); }, TypeError, "Primitive");
10 a.throws(function () { t('raz'); }, TypeError, "String");
11 a.throws(function () { t({}); }, TypeError, "Object");
12 a.throws(function () { t([]); }, TypeError, "Array");
13 if (typeof Set !== 'undefined') {
14 set = new Set();
15 a(t(set), set, "Native");
16 }
17 set = new SetPoly();
18 a(t(set), set, "Polyfill");
19};