Open
Description
Simply crash immediately upon unhandled rejections.
This would never be a default mode; if it were, the library would not be compliant with Promises/A+.
However, it might be a useful mode for debugging, especially for those systems wherein promises are not treated as first-class objects and passed around between asynchronous constructs.
This has the flaw that eventually your system will grow to use promises as first-class constructs, at which point either you'll have to turn this mode off permanently, or eliminate that use of promises and instead mangle your code to work differently.