mirror of https://gitee.com/antv-l7/antv-l7
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
|
var toString = Object.prototype.toString
|
||
|
|
||
|
module.exports = isString
|
||
|
|
||
|
function isString(obj) {
|
||
|
return toString.call(obj) === "[object String]"
|
||
|
}
|