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.
addDurationToDate() function
addDurationToDate() function
addDurationToDate adds given duration to given date and returns a new Date object
Signature
export declare function addDurationToDate(date: Date | number, duration: Duration): Date;
Import
import { addDurationToDate } from '@grafana/data';
Parameters
Parameter | Type | Description |
---|---|---|
date | Date | number | date to add to. Can be either Date object or a number (milliseconds since epoch) |
duration | Duration | duration to add. For example ‘2m’, ‘5h 20s’ |
Returns:
Date