projecte_ionic/node_modules/core-js/es/regexp/search.js
2022-02-09 18:30:03 +01:00

9 lines
243 B
JavaScript
Executable file

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);
};