常用 isXXX 工具方法

// 邮箱
export const isEmail = (s) => {
  return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s)
}
// 手机号码
export const isMobile = (s) => {
  return /^1[0-9]{10}$/.test(s) // 11位手机号码
}
// 电话号码
export const isPhone = (s) => {
  return /^([0-9]{3,4}-)?[0-9]{7,8}$/.test(s) // 座机号
}
// 是否url地址
export const isURL = (s) => {
  return /^http[s]?:\/\/.*/.test(s)
}
// 是否字符串
export const isString = (o) => {
  return Object.prototype.toString.call(o).slice(8, -1) === 'String'
}
// 是否数字
export const isNumber = (o) => {
  return Object.prototype.toString.call(o).slice(8. -1) === 'Number'
}
// 是否boolean
export const isBoolean = (o) => {
  return Object.prototype.toString.call(o).slice(8, -1) === 'Boolean'
}
// 是否函数
export const isFunction = (o) => {
  return Object.prototype.toString.call(o).slice(8, -1) === 'Function'
}
// 是否为null
export const isNull = (o) => {
  return Object.prototype.toString.call(o).slice(8, -1) === 'Null'
}
// 是否为undefined
export const isUndefined = (o) => {
  return Object.prototype.toString.call(o).slice(8, -1) === 'Undefined'
}
// 是否对象
export const isObj = (o) => {
  return Object.prototype.toString.call(o).slice(8, -1) === 'Object'
}
// 是否数组
export const isArray = (s) => {
  return  Object.prototype.toString.call(o).slice(8, -1) === 'Array'
}
// 是否时间
export const isDate = (s) => {
  return  Object.prototype.toString.call(o).slice(8, -1) === 'Date'
}
// 是否正则
export const isRegExp = (s) => {
  return  Object.prototype.toString.call(o).slice(8, -1) === 'RegExp'
}
// 是否错误对象
export const isError = (o) => {
  return Object.prototype.toString.call(o).slice(8, -1) === 'Error'
}
// 是否Symbol函数
export const isSymbol = (o) => {
  return  Object.prototype.toString.call(o).slice(8, -1) === 'Symbol'
}
// 是否Promise对象
export const isPromise = (s) => {
  return  Object.prototype.toString.call(o).slice(8, -1) === 'Promise'
}
// 是否Set对象
export const isSet = (s) => {
  return  Object.prototype.toString.call(o).slice(8, -1) === 'Set'
}

const ua = navigator.userAgent.toLowerCase() // 获取浏览器类型
posted @ 2024-10-30 15:04  席超  阅读(1)  评论(0编辑  收藏  举报