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

var re = /foo/;

module.exports = function () {
	if (typeof re.search !== 'function') return false;
	return re.search('barfoo') === 3;
};