GT2/Ejectable/node_modules/core-js/modules/es6.regexp.match.js
2021-08-16 00:14:59 +00:00

10 lines
No EOL
364 B
JavaScript

// @@match logic
require('./$.fix-re-wks')('match', 1, function(defined, MATCH){
// 21.1.3.11 String.prototype.match(regexp)
return function match(regexp){
'use strict';
var O = defined(this)
, fn = regexp == undefined ? undefined : regexp[MATCH];
return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));
};
});