Skip to content
本章目录

【类型判断 —— isDate】

功能: 判断数据是否是一个日期(date)类型的数据,如果是则返回true,否则返回false

1-函数引入

js
  import { isDate } from 'tj-jstools'
1

2-函数声明

ts
  declare const isDate: (value: unknown) => boolean
1

3-使用示例

ts
  const res1:boolean = isDate(new Date()) // true
  const res2:boolean = isDate('') // false
  const res3:boolean = isDate('2022/8/5') // false
1
2
3

TIP

isDate方法是采用Object.prototype.toString.call(value)方法实现的。

4-参数不能为空

ERROR

该方法的参数不能为空,否则将抛出错误

js
Uncaught Error: isXXXX方法的参数不能为空!
1

Released under the MIT License.