码迷,mamicode.com
首页 > 其他好文 > 详细

工具类

时间:2021-02-02 11:11:35      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ring   fun   iso   amp   pre   target   cti   工具类   ==   

/**
* 判断是否是字符串
* @param target
*/
static isString(target: any) {
return target && typeof target == ‘string‘ && target.constructor == String;
}

/**
* 判断是否是对象
* @param target 对象
*/
static isObject(target: any) {
return target && typeof target == ‘object‘ && target.constructor == Object;
}

/**
* 判断是否是数组
* @param target 对象
*/
static isArray(target: any) {
return target && typeof target == ‘object‘ && target.constructor == Array;
}

/**
* 判断是否是数组
* @param target 对象
*/
static isFunction(target: any) {
return target && typeof target == ‘function‘;
}

工具类

标签:ring   fun   iso   amp   pre   target   cti   工具类   ==   

原文地址:https://www.cnblogs.com/lhx5213/p/14358444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!