Sha256: 1cc6a46b4adec9c392bf1552e9d3df00afb029780c67d36e30041832f1def96c
Contents?: true
Size: 390 Bytes
Versions: 53
Compression:
Stored size: 390 Bytes
Contents
'use strict'; var SetPoly = require('../polyfill'); module.exports = function (t, a) { a(t(undefined), false, "Undefined"); a(t(null), false, "Null"); a(t(true), false, "Primitive"); a(t('raz'), false, "String"); a(t({}), false, "Object"); a(t([]), false, "Array"); if (typeof Set !== 'undefined') { a(t(new Set()), true, "Native"); } a(t(new SetPoly()), true, "Polyfill"); };
Version data entries
53 entries across 53 versions & 7 rubygems