source: trip-planner-front/node_modules/core-js/internals/is-regexp.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 436 bytes
Line 
1var isObject = require('../internals/is-object');
2var classof = require('../internals/classof-raw');
3var wellKnownSymbol = require('../internals/well-known-symbol');
4
5var MATCH = wellKnownSymbol('match');
6
7// `IsRegExp` abstract operation
8// https://tc39.es/ecma262/#sec-isregexp
9module.exports = function (it) {
10 var isRegExp;
11 return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');
12};
Note: See TracBrowser for help on using the repository browser.