Trivikram Kamat

Results 146 comments of Trivikram Kamat

Interested ✋

Suggestion posted at https://github.com/one-aalam/awesome-solid-js/pull/6

Yeah, they haven't updated their [website](https://jsconf.am/)/[twitter](https://twitter.com/jsconf_am) too

> Run ’npm run coverage’ see what parts of the code lacks test and make one in the test folder. I landed on this issue after reading about lack of...

> Could you propose some text? How about this for issue description? --- Please refer [lib/fetch](https://codecov.io/gh/nodejs/undici/tree/main/lib/fetch) folder on CodeCov to check which components of fetch implementation lack unit tests. Comment...

> I have found a use case where I miss this. When having multiple upstream servers where one might be full a reverse proxy should be able to pick another...

> I want to be able to support arbitrary deletions in the cache, I need to maintain a stack of pointers made available when unsetting keys, so I can use...

> I will just create a different structure for that not to hamper the default lru cache exposed by the lib. The time complexity of the default lru cache implementation...

This appears to be limitation put forward by the runtime version. When `capacity= Math.pow(2, 32)` LRUCache needs to use Float64Array as per: https://github.com/Yomguithereal/mnemonist/blob/825538adaf1daee4b9ce3f6c073956ed4211ea1e/utils/typed-arrays.js#L26-L39 But it throws error on Node.js 14.x...

According to ECMAScript Spec on [TypedArray Objects](https://262.ecma-international.org/6.0/#sec-createbytedatablock): > If it is impossible to create such a Data Block, throw a RangeError exception. From StackOverflow answer on [Do ArrayBuffers have a...