summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/x-is-string/index.js
blob: 090130d4ce4026d91cf394228ee966ae7ab75c41 (plain)
1
2
3
4
5
6
7
var toString = Object.prototype.toString

module.exports = isString

function isString(obj) {
    return toString.call(obj) === "[object String]"
}