Jake Verbaten
Jake Verbaten
This adds an opt-in cardinality checker to the statsd client. It will report a gauge of all the unique stats key that it has seen locally within the process. When...
this might be related to spinning workers and -1 fd
This requires checking in 3 languages, something like ```js setInterval(() => { const ht = process.memoryUsage().heapTotal const mb = Math.round(ht / 1024 / 1024 * 100) / 100) if (ht...
Create a `TestingLogger` and hookup STDOUT/STDERR to it.
The `.c` / `.h` implementation was nice to read for it's single file nature. Should we combine the JS code into a single file ? This would match how we've...
It would be nice if it could be documented what you need to emulate for full support here. For example would it work in IE8+ if you threw the DOM-shim...
I replaced two lines in my code base from: ``` var copy = JSON.parse(JSON.stringify(o)) ``` to ``` var copy = universalCopy(o) ``` And it increased the runtime of test suite...
You seem to have an `.each` and `.size` name that matches jQuery names. I recommend changing them to names that match the array object instead like `.forEach` and `.length`
If you implement a `.toJSON` method on your observable object then it will work with JSON.stringify. In case you don't know, `JSON.stringify` will call a `.toJSON` method if it exists...