{"ast":null,"code":"import { previousDay } from \"./previousDay.mjs\";\n\n/**\n * @name previousThursday\n * @category Weekday Helpers\n * @summary When is the previous Thursday?\n *\n * @description\n * When is the previous Thursday?\n *\n * @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).\n *\n * @param date - The date to start counting from\n *\n * @returns The previous Thursday\n *\n * @example\n * // When is the previous Thursday before Jun, 18, 2021?\n * const result = previousThursday(new Date(2021, 5, 18))\n * //=> Thu June 17 2021 00:00:00\n */\nexport function previousThursday(date) {\n  return previousDay(date, 4);\n}\n\n// Fallback for modularized imports:\nexport default previousThursday;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}