shim.js 132 B

123456
  1. "use strict";
  2. module.exports = function (t, a) {
  3. var result = "foobar".match(/foo/);
  4. a.deep(t.call(/foo/, "foobar"), result);
  5. };