Home > @taiyuuki/utils > is_date
is_date() function
该函数检查给定值是否为 TypeScript 中的 Date 对象。
Signature:
typescript
declare function is_date(d: any): d is Date;
declare function is_date(d: any): d is Date;
Parameters
Parameter | Type | Description |
---|---|---|
d | any | 参数 d 是 any 类型,这意味着它可以是任何数据类型。但是,该函数使用 Object.prototype.toString.call() 方法检查 date 是否为 Date 对象。 |
Returns:
d is Date
函数 is_date 返回一个布尔值。如果输入的“d”是“Date”类型,它返回“true”,否则返回“false”。