Skip to content

Releases: steaks/exceptions.js

ex alias

Choose a tag to compare

@steaks steaks released this 05 Oct 19:47

Added ex alias for more readable code.

For example,

function myFunc(requiredArg) {
    exception.throwIf(!requiredArg, "The requiredArg argument was not provided!!!");
}

becomes

function myFunc(requiredArg) {
    ex.throwIf(!requiredArg, "The requiredArg argument was not provided!!!");
}

Added convenience methods exceptions.throwIf and exceptions.reportIf

Choose a tag to compare

@steaks steaks released this 10 Aug 20:20

Added convenience methods exceptions.throwIf and exceptions.reportIf which are useful shortcuts to call exceptions.Exception.throwIf and exceptions.Exception.reportIf.

Cleaned up API for configuring reporting settings and the guard

Choose a tag to compare

@steaks steaks released this 10 Aug 20:19

Version 0.3.0 can be considered primarily a cleanup release. It improves the API around configuring reporting settings and the guard. Additionally, it adds functionality to extract DOM dumps.

Integration with exceptions.js platform

Choose a tag to compare

@steaks steaks released this 30 Jun 04:21
0.2.0

Added documentation for postToExceptionsJsPlatform

Small bug fixes for initial release and cleaner logging

Choose a tag to compare

@steaks steaks released this 11 Jun 04:21
0.1.1

Merge branch 'master' of https://github.com/steaks/exceptions.js

Beta Release

Beta Release Pre-release
Pre-release

Choose a tag to compare

@steaks steaks released this 04 Jun 02:53

The library has been fully implemented to the initially proposed spec and tested thoroughly enough to be released in Beta.