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

var toString = Object.prototype.toString

  , id = toString.call(/a/);

module.exports = function (x) {
	return (x && (x instanceof RegExp || (toString.call(x) === id))) || false;
};