You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
13 lines
296 B
function _typeof(obj) {
|
|
return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase();
|
|
}
|
|
function isString(obj) { //是否字符串
|
|
return _typeof(obj) === 'string'
|
|
}
|
|
function isPlainObject(obj) {
|
|
return _typeof(obj) === 'object';
|
|
}
|
|
module.exports = {
|
|
isString,
|
|
isPlainObject
|
|
}
|
|
|