Aaron Hamid

Results 14 issues of Aaron Hamid

Edit: the `bits` flag is true by default, so sizes are possibly rendered in Megabits (Mb). I think this is probably confusing for most users and `bits` should be set...

I noticed my `data-cover-testReadyCallback` attribute option was not being detected because when the following line is evaluated, the `es.nodeName` is lowercase `data-cover-testreadycallback` `if (es.nodeName === "data-cover-testReadyCallback"){` It may be a...

See #7 This patch allows inheriting the comment of the lvalue if the function expression is part of an assignment expression. This allows comments of the following form, which in...

Maybe this is an auto-close if this is due to upstream Flow behavior, but function expressions do not seem to be supported with non-inline block comments. That's unfortunate because those...

Only the last value of a given multi-valued response header is saved. For example: ``` Set-Cookie: first cookie Set-Cookie: second cookie ``` only the `second cookie` will be assigned. This...

A change was made in the recent rewrite which appears to have broken nested collections. The problem is in 'extract_collection_name' - only the first name component will ever be returned....

It appears that (at least for `Memory` store) filtering produces sub-collections that expose (excluded) parent items. `Memory.getSync` explicitly retrieves items from `storage.fullData`, so I wonder if this is by design...

After reading the docs and examples, the purpose and distinction between `forward` and `target` is still not clear to me (including `forward-and-target-proxy.js` example - I can't tell what this is...

The way Node stores string fragments alongside internal fields is problematic: ``` new Trie(['child']).optimize() Uncaught TypeError: this.child is not a function at Node.isTerminalString (node.js:51) at Node.isTerminal (node.js:56) at Trie.collapseChains (trie.js:207)...