mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
10 lines
371 B
JavaScript
10 lines
371 B
JavaScript
// @@search logic
|
|
require('./$.fix-re-wks')('search', 1, function(defined, SEARCH){
|
|
// 21.1.3.15 String.prototype.search(regexp)
|
|
return function search(regexp){
|
|
'use strict';
|
|
var O = defined(this)
|
|
, fn = regexp == undefined ? undefined : regexp[SEARCH];
|
|
return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
|
|
};
|
|
}); |