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

var re = /\|/;

module.exports = function () {
	if (typeof re.split !== 'function') return false;
	return re.split('bar|foo')[1] === 'foo';
};