blob: 090130d4ce4026d91cf394228ee966ae7ab75c41 [file] [log] [blame]
var toString = Object.prototype.toString
module.exports = isString
function isString(obj) {
return toString.call(obj) === "[object String]"
}