判断变量是否为空

判断变量是否为空
/**
 * 判断变量是否为空(0除外),
 * @param v  判断对象
 * @returns Boolean
 */
const isEmpty = v => {
  switch (typeof v) {
    case 'undefined':
      return true;
    case 'string':
      if (v.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g, '').length == 0) return true;
      break;
    case 'boolean':
      if (!v) return true;
      break;
    case 'number':
      if (isNaN(v)) return true;
      break;
    case 'object':
      if (null === v || v.length === 0) return true;
      for (var i in v) {
        return false;
      }
      return true;
  }
  return false;
}

 

 
 
 
 
 
 
posted @ 2022-04-25 11:09  时光独醒  阅读(3)  评论(0编辑  收藏  举报