wallet-core/node_modules/core-js/modules/es6.regexp.match.js

10 lines
364 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
// @@match logic
require('./$.fix-re-wks')('match', 1, function(defined, MATCH){
2016-10-10 03:43:44 +02:00
// 21.1.3.11 String.prototype.match(regexp)
return function match(regexp){
2016-10-10 03:43:44 +02:00
'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));
};
2016-10-10 03:43:44 +02:00
});