massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / es / regexp / search.js
1 require('../../modules/es.regexp.exec');
2 require('../../modules/es.string.search');
3 var call = require('../../internals/function-call');
4 var wellKnownSymbol = require('../../internals/well-known-symbol');
5
6 var SEARCH = wellKnownSymbol('search');
7
8 module.exports = function (it, str) {
9   return call(RegExp.prototype[SEARCH], it, str);
10 };