mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
require('../../modules/es.string.search');
|
|
var wellKnownSymbol = require('../../internals/well-known-symbol');
|
|
|
|
var SEARCH = wellKnownSymbol('search');
|
|
|
|
module.exports = function (it, str) {
|
|
return RegExp.prototype[SEARCH].call(it, str);
|
|
};
|