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

11 lines
394 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
// @@search logic
2017-08-14 05:01:11 +02:00
require('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) {
2016-10-10 03:43:44 +02:00
// 21.1.3.15 String.prototype.search(regexp)
2017-08-14 05:01:11 +02:00
return [function search(regexp) {
2016-10-10 03:43:44 +02:00
'use strict';
2017-08-14 05:01:11 +02:00
var O = defined(this);
var fn = regexp == undefined ? undefined : regexp[SEARCH];
2016-10-10 03:43:44 +02:00
return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
2017-05-27 17:36:13 +02:00
}, $search];
2017-08-14 05:01:11 +02:00
});