debian-mirror-gitlab/core-js/es/regexp/match.js
2019-09-25 13:30:05 +05:30

8 lines
239 B
JavaScript

require('../../modules/es.string.match');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var MATCH = wellKnownSymbol('match');
module.exports = function (it, str) {
return RegExp.prototype[MATCH].call(it, str);
};