Sha256: 39fb4fccf367d20bf719ba76c6fb5c207eced662b494c8e406070b7a700b93d7
Contents?: true
Size: 441 Bytes
Versions: 46
Compression:
Stored size: 441 Bytes
Contents
"use strict"; module.exports = function (t, a) { a(t([]), true, "Array"); a(t(""), true, "String"); a( t( (function () { return arguments; })() ), true, "Arguments" ); a(t({ length: 0 }), true, "List object"); a(t(function () {}), false, "Function"); a(t({}), false, "Plain object"); a(t(/raz/), false, "Regexp"); a(t(), false, "No argument"); a(t(null), false, "Null"); a(t(undefined), false, "Undefined"); };
Version data entries
46 entries across 46 versions & 3 rubygems