Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

addDurationToDate() function

addDurationToDate() function

addDurationToDate adds given duration to given date and returns a new Date object

Signature

typescript
export declare function addDurationToDate(date: Date | number, duration: Duration): Date;

Import

typescript
import { addDurationToDate } from '@grafana/data';

Parameters

ParameterTypeDescription
dateDate | numberdate to add to. Can be either Date object or a number (milliseconds since epoch)
durationDurationduration to add. For example ‘2m’, ‘5h 20s’

Returns:

Date