Ivan Novikov
Results
2
comments of
Ivan Novikov
@developit if it's any help, here's how I dealt with the type safety issue in my own build process that doesn't use workerize https://www.obvibase.com/dev-blog/how-obvibase-uses-web-workers and it has worked out really...
If it helps, here's another use-case: ```ts const stringCompare = (to: string, from: string) => to < from ? -1 : to > from ? 1 : 0; const reverseString...