Files
my_site/node_modules/is-regexp/index.js
2026-03-24 14:30:59 +08:00

6 lines
134 B
JavaScript

const {toString} = Object.prototype;
export default function isRegexp(value) {
return toString.call(value) === '[object RegExp]';
}