mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 05:14:06 -06:00
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
"use strict";
|
|
|
|
var objToString = Object.prototype.toString, id = objToString.call(/a/);
|
|
|
|
module.exports = function (value) {
|
|
return (value && (value instanceof RegExp || objToString.call(value) === id)) || false;
|
|
};
|