10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function isRegExp(value) {
|
|
return value instanceof RegExp;
|
|
}
|
|
|
|
exports.isRegExp = isRegExp;
|