mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
13 lines
443 B
JavaScript
13 lines
443 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.github.io/ecma262/#sec-isregexp
|
|
module.exports = function (it) {
|
|
var isRegExp;
|
|
return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');
|
|
};
|