fullbl

Results 12 comments of fullbl

https://stackblitz.com/edit/typescript-beubmj?file=index.ts sorry, I didn't know about how stackblitz works, however I just changed how the dayjs object was constructed: ``` console.log(dayjs('2023-12-31').year(2024).week(1).utc().local().format()); => 2024-12-31T00:00:00+01:00 console.log(dayjs('2023-12-31').year(2024).startOf('year').week(1).utc().local().format()); => 2024-01-01T00:00:00+01:00 ```

Something like this would work, don't know if it's optimal (I'm pretty new to mongodb): ``` $matchExpression = $this->applyFilters([]); if ($matchExpression !== []) { if ($this->getStage(0) instanceof Stage\MatchStage) { $merger...