var toString = Object.prototype.toString
module.exports = isString
function isString(obj) {
return toString.call(obj) === "[object String]"
}
For further actions, you may consider blocking this person and/or reporting abuse
var toString = Object.prototype.toString
module.exports = isString
function isString(obj) {
return toString.call(obj) === "[object String]"
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)