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