UNPKG

chain-able

Version:

interfaces that describe their intentions.

22 lines (20 loc) 484 B
const toS = require('./toS') /** * Checks if `value` is classified as a `RegExp` object. * * @since 0.1.0 * @category Lang * @param {*} value The value to check. * @return {boolean} Returns `true` if `value` is a regexp, else `false`. * @see https://github.com/lodash/lodash/blob/master/isRegExp.js * * @example * * isRegExp(/abc/) * // => true * * isRegExp('/abc/') * // => false * */ module.exports = obj => obj instanceof RegExp || toS(obj) === '[object RegExp]'