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