Sha256: 0ac1464f1da81aba2deb6956a3692000487e8dd46bca3bbaf8b3933e34c88518
Contents?: true
Size: 394 Bytes
Versions: 111
Compression:
Stored size: 394 Bytes
Contents
'use strict'; var SymbolPoly = 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 Symbol !== 'undefined') { a(t(Symbol()), true, "Native"); } a(t(SymbolPoly()), true, "Polyfill"); };
Version data entries
111 entries across 65 versions & 10 rubygems