All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules.es6.regexp.search.js Maven / Gradle / Ivy

The newest version!
// @@search logic
require('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search) {
  // 21.1.3.15 String.prototype.search(regexp)
  return [function search(regexp) {
    'use strict';
    var O = defined(this);
    var fn = regexp == undefined ? undefined : regexp[SEARCH];
    return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
  }, $search];
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy