Opal-Estate-Pro/node_modules/core-js/modules/_is-regexp.js

9 lines
289 B
JavaScript
Raw Normal View History

2019-09-13 06:27:52 +02:00
// 7.2.8 IsRegExp(argument)
var isObject = require('./_is-object');
var cof = require('./_cof');
var MATCH = require('./_wks')('match');
module.exports = function (it) {
var isRegExp;
return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp');
};