UNPKG

babel-plugin-css-modules-transform

Version:
15 lines (14 loc) 260 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isString; /** * Is provided object a string? * * @param {*} object * @returns {boolean} */ function isString(object) { return typeof object === 'string'; }