Tim Kye
Tim Kye
The dev/null pipes just hide all the individual file noise. You can comment them out and see no errors are being hidden. Again, this exact setup works without the import...
Sounds good
I would be interested in the following benchmarks, on a matrix of 128mb, 256mb, 512mb lambdas * Cold Start; with echo response, no deps * Warm Start; with echo response,...
Javascript already has a [finally](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch#The_finally_clause). Just use it ```javascript co(function * () { try { // try to work } catch (e) { // handle your errors } finally {...
Co doesn't add a catch either, because you don't need one. You use the js keywords ```javascript const obj = { insertInDb: function*(attrs){ //without try ... } } co(function *...
The `finally` in this line ``` co(obj.insertInDb(attrs)).catch(...).finally(..close connections etc) ``` Would have to be on the `Promise.prototype`. `co` returns Promises.
This is currently happening on [my project](https://github.com/kyeotic/raviger/tree/c36bff7a7f055359207cb38204219bbeb58ba5c3). I added a new file to a branch, merged via PR. There are no untracked changes, and I don't see any reason for...
It did include the file, so it does appear to be a false negative. @sindresorhus was asking for a repro though, so that link (to the exact sha) should provide...
klimashkin, I don't agree that users are using older browsers because sites and libraries support them. Most people still using IE6 are doing so because of corporate policy, not upgrade...
No, its unlikely to change. Not because it works, but because it's unlikely to change. They were on IE7 before they were our clients; supporting IE7 was a precondition. It...