the-forest/client/node_modules/is-regexp/index.js
2024-09-17 20:35:18 -04:00

5 lines
116 B
JavaScript

'use strict';
module.exports = function (re) {
return Object.prototype.toString.call(re) === '[object RegExp]';
};