summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/reg-exp/#/split/shim.js
blob: 76154e7e3c006961754b28763098da6cc15942e1 (plain)
1
2
3
4
5
6
7
8
'use strict';

var validRegExp = require('../../valid-reg-exp');

module.exports = function (string) {
	validRegExp(this);
	return String(string).split(this);
};