hz-zhhq-app/node_modules/core-js/es/regexp/search.js

10 lines
284 B
JavaScript
Raw Normal View History

2025-01-22 10:53:47 +08:00
require('../../modules/es.regexp.exec');
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);
};