is-string.js 116 Bytes Raw Blame History Permalink 1 2 3 module.exports = function isString (value) { return Object.prototype.toString.call(value) === '[object String]' }