Function
fail
(message, exception, callback)
Source from the content-addressed store, hash-verified
| 731 | } |
| 732 | |
| 733 | function fail(message, exception, callback) { |
| 734 | if ( typeof console !== "undefined" && console.error && console.warn ) { |
| 735 | console.error(message); |
| 736 | console.error(exception); |
| 737 | console.warn(callback.toString()); |
| 738 | |
| 739 | } else if ( window.opera && opera.postError ) { |
| 740 | opera.postError(message, exception, callback.toString); |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | function extend(a, b) { |
| 745 | for ( var prop in b ) { |
Tested by
no test coverage detected