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