search.js 243 B

12345678
  1. require('../../modules/es.string.search');
  2. var wellKnownSymbol = require('../../internals/well-known-symbol');
  3. var SEARCH = wellKnownSymbol('search');
  4. module.exports = function (it, str) {
  5. return RegExp.prototype[SEARCH].call(it, str);
  6. };