debian-mirror-gitlab/core-js/es/regexp/search.js
2019-09-25 13:30:05 +05:30

8 lines
243 B
JavaScript

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