aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-regexp/index.js
blob: 8331e37c7f3a0acba03034e3ff63e25403bdf4a2 (plain)
1
2
3
4
'use strict';
module.exports = function (re) {
	return Object.prototype.toString.call(re) === '[object RegExp]';
};