es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
21 lines (20 loc) • 515 B
JavaScript
const require_isRegExp = require("../../predicate/isRegExp.js");
//#region src/compat/predicate/isRegExp.ts
/**
* Checks if `value` is a RegExp.
*
* @param value The value to check.
* @returns Returns `true` if `value` is a RegExp, `false` otherwise.
*
* @example
* const value1 = /abc/;
* const value2 = '/abc/';
*
* console.log(isRegExp(value1)); // true
* console.log(isRegExp(value2)); // false
*/
function isRegExp(value) {
return require_isRegExp.isRegExp(value);
}
//#endregion
exports.isRegExp = isRegExp;