Files
old-slucajna-televizija/web/node_modules/core-js/modules/es6.regexp.match.js
2017-10-16 11:19:46 +02:00

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