Sha256: 9a8df611d71c454209bb11d14fe28c0fad7d527d4a1940aadde8e9cffb055207
Contents?: true
Size: 373 Bytes
Versions: 46
Compression:
Stored size: 373 Bytes
Contents
"use strict"; module.exports = function (t, a) { a(t(), "undefined"); a(t(null), "null"); a(t(10), "10"); a(t("str"), "str"); a(t({ toString: function () { return "miszka"; } }), "miszka"); // eslint-disable-next-line symbol-description if (typeof Symbol === "function") a(t(Symbol()), "Symbol()"); a(t(Object.create(null)), "<Non-coercible to string value>"); };
Version data entries
46 entries across 46 versions & 2 rubygems