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

9 lines
239 B
JavaScript
Executable file

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