blob: 49ae5f2bccaeac3645ee4036322c6da4858124df (
plain)
1
2
3
4
5
6
7
8
|
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);
};
|