Sha256: 14d6d119fcd2f7b98b3e0ca53a21e948de1e4d5915aca489be74483807fa5a87
Contents?: true
Size: 343 Bytes
Versions: 46
Compression:
Stored size: 343 Bytes
Contents
"use strict"; module.exports = function (t, a) { var r = /raz/; a(t(r), r, "Direct"); r = new RegExp("foo"); a(t(r), r, "Constructor"); a.throws(function () { t({}); }, "Object"); a.throws(function () { t(function () {}); }, "Function"); a.throws(function () { t({ exec: function () { return 20; } }); }, "Plain object"); };
Version data entries
46 entries across 46 versions & 3 rubygems