dateAddTime
dateAddTime() adds a duration to a wrapped Date. The duration can be a wrapped Time or a DDate.TheTime. Supports the curried version.
Interactive example
Syntax
Classic signature
typescript
function dateAddTime(
primitive: Date,
time: Time | TheTime
): DateCurried signature
typescript
function dateAddTime(
time: Time | TheTime
): (primitive: Date) => DateParameters
primitive: wrappedDate(classic signature only).time: duration to add.
Return value
A wrapped Date with the duration added.
