6 lines
134 B
JavaScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
const {toString} = Object.prototype;
export default function isRegexp(value) {
return toString.call(value) === '[object RegExp]';
}