projecte_ionic/node_modules/core-js/es/regexp/split.js
2022-02-09 18:30:03 +01:00

9 lines
253 B
JavaScript
Executable file

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);
};