debian-mirror-gitlab/core-js/es/regexp/search.js

9 lines
243 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
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);
};