shim.js 185 B

123456789
  1. "use strict";
  2. module.exports = function (t, a) {
  3. a(t(), 0, "No arguments");
  4. a(t(0, 0), 0, "Zeros");
  5. a(t(2, 4), 8, "#1");
  6. a(t(-1, 8), -8, "#2");
  7. a(t(0xfffffffe, 5), -10, "#3");
  8. };