UNPKG

infrastructure-components

Version:

Infrastructure-Components configure the infrastructure of your React-App as part of your React-Components.

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