Michał Miszczyszyn

Results 133 comments of Michał Miszczyszyn

Ale dokładnie to samo zachowanie osiągniesz używając natywnego `bind` albo lodasha, więc nie widzę potrzeby powiększania tej biblioteki ogólnodostępnymi utilkami. Co od liczby parametrów — każdy rozsądny cżłowiek używa TS,...

@skix123 czy możesz podać przykład, w którym kod z tej paczki zawodzi? https://github.com/mmiszy/polish-plurals/blob/5d2dc0cdea93e68e0a320a0201f0acb7a53206d0/index.mjs#L5

@skix123 przeprowadziłem następujący test: ```ts function polishPlurals1(singularNominativ, pluralNominativ, pluralGenitive, value) { value = Math.abs(value); if (value === 1) { return singularNominativ; } else if (value % 10 >= 2 &&...

I've implemented a separate worker for now, thanks!

Next.js version is `14.3.0-canary.53` (only `canary` versions support PPR). To reproduce, enable [PPR](https://nextjs.org/docs/app/api-reference/next-config-js/partial-prerendering) and create a page that uses params and searchParams. See: https://github.com/typeofweb/sentry-nextjs-bug-repro

Unfortunately `serverComponentsExternalPackages: ["libsql"],` doesn't fix the issue.

I'd love to see more typesafe features in Hapi but it mostly relies on Joi. Unfortunately, recently Joi typings had a massive rewrite which makes any kind of modifications much...

From the docs: _`none` to avoid wrapping generally, **unless the line is too long**_ What does too long mean? I have a line of autogenerated code that's 2195 characters long...

Indeed, I missed `@interface`! Thank you. Unfortunately, it behaves somewhat unexpectedly in the case when a function returns an array. For example: ```ts function doSth() { return [{ abc: 123...