You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
295 B

// 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');
};