* @summary Add the specified number of weeks to the given date.
5
*
6
* @description
7
* Add the specified number of week to the given date.
8
*
9
* @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).
10
*
11
* @param date - The date to be changed
12
* @param amount - The amount of weeks to be added.
13
*
14
* @returns The new date with the weeks added
15
*
16
* @example
17
* // Add 4 weeks to 1 September 2014:
18
* const result = addWeeks(new Date(2014, 8, 1), 4)