Using Lodash for RegEx

Easy
12.5% Acceptance

In this lab, you'll use the lodash library to check if a value is a regular expression or not. Lodash is a JavaScript library that provides utility functions for common programming tasks. You'll create a function named 'checkRegExp' that takes an input and uses the lodash '_isRegExp' method to determine if the input is a RegExp or not, then returns the result.

To complete this lab, you should have a basic understanding of JavaScript, importing modules in ESM, and using external libraries like lodash.