12345678910111213 |
- function _typeof(obj) {
- return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase();
- }
- function isString(o) { //是否字符串
- return _typeof(obj) === 'string'
- }
- function isPlainObject(obj) {
- return _typeof(obj) === 'object';
- }
- module.exports = {
- isString,
- isPlainObject
- }
|