Axel Rauschmayer (2013-07-28T04:59:41.000Z)
domenic at domenicdenicola.com (2013-07-31T15:02:18.324Z)
This is full-on bikeshedding, but I’d prefer a constant for this purpose (less grawlixy): ```js import { NOOP } from 'someModule'; function tryCatchFinally(tryF, catchF = NOOP, finallyF = NOOP) { // ... } ``` `Function.prototype` could be used, too. But I don’t like that at all.