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