{"ast":null,"code":"import { eachWeekendOfInterval } from \"./eachWeekendOfInterval.mjs\";\nimport { endOfMonth } from \"./endOfMonth.mjs\";\nimport { startOfMonth } from \"./startOfMonth.mjs\";\n\n/**\n * @name eachWeekendOfMonth\n * @category Month Helpers\n * @summary List all the Saturdays and Sundays in the given month.\n *\n * @description\n * Get all the Saturdays and Sundays in the given month.\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 given month\n *\n * @returns An array containing all the Saturdays and Sundays\n *\n * @example\n * // Lists all Saturdays and Sundays in the given month\n * const result = eachWeekendOfMonth(new Date(2022, 1, 1))\n * //=> [\n * //   Sat Feb 05 2022 00:00:00,\n * //   Sun Feb 06 2022 00:00:00,\n * //   Sat Feb 12 2022 00:00:00,\n * //   Sun Feb 13 2022 00:00:00,\n * //   Sat Feb 19 2022 00:00:00,\n * //   Sun Feb 20 2022 00:00:00,\n * //   Sat Feb 26 2022 00:00:00,\n * //   Sun Feb 27 2022 00:00:00\n * // ]\n */\nexport function eachWeekendOfMonth(date) {\n  const start = startOfMonth(date);\n  const end = endOfMonth(date);\n  return eachWeekendOfInterval({\n    start,\n    end\n  });\n}\n\n// Fallback for modularized imports:\nexport default eachWeekendOfMonth;","map":{"version":3,"names":["eachWeekendOfInterval","endOfMonth","startOfMonth","eachWeekendOfMonth","date","start","end"],"sources":["/root/rfcontavagas_hom/12.-Servidor-local-Docker/Front-Parking-Angular/node_modules/date-fns/eachWeekendOfMonth.mjs"],"sourcesContent":["import { eachWeekendOfInterval } from \"./eachWeekendOfInterval.mjs\";\nimport { endOfMonth } from \"./endOfMonth.mjs\";\nimport { startOfMonth } from \"./startOfMonth.mjs\";\n\n/**\n * @name eachWeekendOfMonth\n * @category Month Helpers\n * @summary List all the Saturdays and Sundays in the given month.\n *\n * @description\n * Get all the Saturdays and Sundays in the given month.\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 given month\n *\n * @returns An array containing all the Saturdays and Sundays\n *\n * @example\n * // Lists all Saturdays and Sundays in the given month\n * const result = eachWeekendOfMonth(new Date(2022, 1, 1))\n * //=> [\n * //   Sat Feb 05 2022 00:00:00,\n * //   Sun Feb 06 2022 00:00:00,\n * //   Sat Feb 12 2022 00:00:00,\n * //   Sun Feb 13 2022 00:00:00,\n * //   Sat Feb 19 2022 00:00:00,\n * //   Sun Feb 20 2022 00:00:00,\n * //   Sat Feb 26 2022 00:00:00,\n * //   Sun Feb 27 2022 00:00:00\n * // ]\n */\nexport function eachWeekendOfMonth(date) {\n  const start = startOfMonth(date);\n  const end = endOfMonth(date);\n  return eachWeekendOfInterval({ start, end });\n}\n\n// Fallback for modularized imports:\nexport default eachWeekendOfMonth;\n"],"mappings":"AAAA,SAASA,qBAAqB,QAAQ,6BAA6B;AACnE,SAASC,UAAU,QAAQ,kBAAkB;AAC7C,SAASC,YAAY,QAAQ,oBAAoB;;AAEjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,kBAAkBA,CAACC,IAAI,EAAE;EACvC,MAAMC,KAAK,GAAGH,YAAY,CAACE,IAAI,CAAC;EAChC,MAAME,GAAG,GAAGL,UAAU,CAACG,IAAI,CAAC;EAC5B,OAAOJ,qBAAqB,CAAC;IAAEK,KAAK;IAAEC;EAAI,CAAC,CAAC;AAC9C;;AAEA;AACA,eAAeH,kBAAkB","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}