is-implemented.js 168 B

12345678
  1. "use strict";
  2. var re = /foo/;
  3. module.exports = function () {
  4. if (typeof re.match !== "function") return false;
  5. return re.match("barfoobar") && !re.match("elo");
  6. };