Created
December 19, 2022 09:46
-
-
Save jkohlin/515ca2688c79c11b17c3eb38805e46ee to your computer and use it in GitHub Desktop.
Get the date for x days ago
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Description | |
* @param {Date} date | |
* @param {number} offset | |
* @returns {Date} | |
*/ | |
export const getOffsetDate = (date, offset) => { | |
return new Date(date.setDate(date.getDate() - offset * 7)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment