$.is-regexp.js 295 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 // 7.2.8 IsRegExp(argument) var isObject = require('./$.is-object') , cof = require('./$.cof') , MATCH = require('./$.wks')('match'); module.exports = function(it){ var isRegExp; return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); };