mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-08 03:50:13 +08:00
13 lines
436 B
JavaScript
13 lines
436 B
JavaScript
|
|
var isObject = require('../internals/is-object');
|
||
|
|
var classof = require('../internals/classof-raw');
|
||
|
|
var wellKnownSymbol = require('../internals/well-known-symbol');
|
||
|
|
|
||
|
|
var MATCH = wellKnownSymbol('match');
|
||
|
|
|
||
|
|
// `IsRegExp` abstract operation
|
||
|
|
// https://tc39.es/ecma262/#sec-isregexp
|
||
|
|
module.exports = function (it) {
|
||
|
|
var isRegExp;
|
||
|
|
return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');
|
||
|
|
};
|