isRegExp.js 155 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 var isKind = require('./isKind'); /** */ function isRegExp(val) { return isKind(val, 'RegExp'); } module.exports = isRegExp;