Sha256: c4805e33e2bfb9955fbb6a1974a6be69c185287e62074657d0171a61d8c1ce59
Contents?: true
Size: 616 Bytes
Versions: 111
Compression:
Stored size: 616 Bytes
Contents
'use strict'; var SymbolPoly = require('../polyfill'); module.exports = function (t, a) { var symbol; a.throws(function () { t(undefined); }, TypeError, "Undefined"); a.throws(function () { t(null); }, TypeError, "Null"); a.throws(function () { t(true); }, TypeError, "Primitive"); a.throws(function () { t('raz'); }, TypeError, "String"); a.throws(function () { t({}); }, TypeError, "Object"); a.throws(function () { t([]); }, TypeError, "Array"); if (typeof Symbol !== 'undefined') { symbol = Symbol(); a(t(symbol), symbol, "Native"); } symbol = SymbolPoly(); a(t(symbol), symbol, "Polyfill"); };
Version data entries
111 entries across 65 versions & 10 rubygems