UNPKG

babel-plugin-css-modules-transform

Version:
15 lines (14 loc) 259 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isRegExp; /** * Is Provided object an RegExp? * * @param {*} object * @returns {boolean} */ function isRegExp(object) { return object instanceof RegExp; }