Alfie728

Results 3 comments of Alfie728

Hey @pontusab, I think you might be confusing nextjs' prefetch with trpc's (tanstack query) prefetch nextjs' Link component will automatically prefetch static routes that's cached in nextjs' full route cache...

```js export default function unsquashObject(obj) { const res = {}; // Initialize an empty result object to store the reconstructed nested structure // Iterate over each flattened key-value pair in...

```js Array.prototype.myReduce = function (callbackFn, initialValue) { const noInitialValue = initialValue === undefined; // Check if no initial value was provided const len = this.length; // Get the length of...