Skip to content

Releases: steaks/exceptions.js

ex alias

05 Oct 19:47
Compare
Choose a tag to compare

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

10 Aug 20:20
Compare
Choose a tag to compare

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

10 Aug 20:19
Compare
Choose a tag to compare

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

30 Jun 04:21
Compare
Choose a tag to compare
0.2.0

Added documentation for postToExceptionsJsPlatform

Small bug fixes for initial release and cleaner logging

11 Jun 04:21
Compare
Choose a tag to compare
0.1.1

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

Beta Release

04 Jun 02:53
Compare
Choose a tag to compare
Beta Release Pre-release
Pre-release

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