Skip to content

date-manip


date-manip / subMinutes

subMinutes

函数

default()

default(date, minutes): Date

定义于: src/subMinutes.ts:18

Subtracts a specified number of minutes from a date. 从日期中减去指定数量的分钟。

参数

date

Date

The date to subtract minutes from. (要从日期中减去的日期。)

minutes

number

The number of minutes to subtract. (要减去的分钟数。)

返回

Date

A new date with the subtracted minutes. (减去分钟后的新日期。)

示例

ts
// Subtracting 30 minutes from a date (从日期中减去30分钟)
const date = new Date('2023-10-01T12:00:00Z');
subMinutes(date, 30);
// Returns: 2023-10-01T11:30:00.000Z (返回: 2023-10-01T11:30:00.000Z)