From 1dd069aafe65123eaeb0c546bf03320f53db9262 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 30 May 2026 12:28:28 +0000 Subject: [PATCH 1/2] docs: add Notes section in `time/day-of-year` Adds a `## Notes` section to the package README. The `## Notes` section is present in 15/19 (78.9%) `time/*` packages, meeting the majority threshold. The DST/timezone disclaimer bullet matches the boilerplate used verbatim across 9 sibling packages (`days-in-month`, `days-in-year`, `hours-in-month`, `hours-in-year`, `minutes-in-month`, `minutes-in-year`, `seconds-in-month`, `seconds-in-year`, `iso-weeks-in-year`); `day-of-year` extracts month/day/year from a `Date` via local-time accessors and is subject to the same DST/timezone caveats. --- lib/node_modules/@stdlib/time/day-of-year/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/node_modules/@stdlib/time/day-of-year/README.md b/lib/node_modules/@stdlib/time/day-of-year/README.md index 753c56267339..3699adbed93a 100644 --- a/lib/node_modules/@stdlib/time/day-of-year/README.md +++ b/lib/node_modules/@stdlib/time/day-of-year/README.md @@ -73,6 +73,16 @@ var num = dayOfYear( new Date() ); +
+ +## Notes + +- The function's return value is a generalization and does **not** take into account inaccuracies due to daylight savings conventions, crossing timezones, or other complications with time and dates. + +
+ + +
## Examples From 7326942f7bd6c2d043006be908bd49a37e2a2a9d Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 30 May 2026 12:28:33 +0000 Subject: [PATCH 2/2] docs: add Notes section in `time/day-of-quarter` Adds a `## Notes` section to the package README. The `## Notes` section is present in 15/19 (78.9%) `time/*` packages, meeting the majority threshold. The DST/timezone disclaimer bullet matches the boilerplate used verbatim across 9 sibling packages (`days-in-month`, `days-in-year`, `hours-in-month`, `hours-in-year`, `minutes-in-month`, `minutes-in-year`, `seconds-in-month`, `seconds-in-year`, `iso-weeks-in-year`); `day-of-quarter` delegates to `day-of-year`/`quarter-of-year` and reads month/day/year from a `Date` via local-time accessors, so it is subject to the same DST/timezone caveats. --- lib/node_modules/@stdlib/time/day-of-quarter/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/node_modules/@stdlib/time/day-of-quarter/README.md b/lib/node_modules/@stdlib/time/day-of-quarter/README.md index f9aed170a9c1..b4bc2be59130 100644 --- a/lib/node_modules/@stdlib/time/day-of-quarter/README.md +++ b/lib/node_modules/@stdlib/time/day-of-quarter/README.md @@ -70,6 +70,16 @@ var num = dayOfQuarter( new Date() ); +
+ +## Notes + +- The function's return value is a generalization and does **not** take into account inaccuracies due to daylight savings conventions, crossing timezones, or other complications with time and dates. + +
+ + +
## Examples