summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext/reg-exp/#/search/shim.js
blob: 6d9dcaed8ab26f80b686b2b4d77494ec635fe2a7 (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).search(this);
};