UNPKG

@storm-stack/types

Version:

⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.

4 lines (3 loc) 208 B
import { getObjectTag } from "./get-object-tag.mjs"; import { isObjectLike } from "./is-plain-object.mjs"; export const isRegExp = (value) => isObjectLike(value) && getObjectTag(value) === "[object RegExp]";