phpjs
Version:
17 lines (12 loc) • 518 B
JavaScript
function restore_exception_handler() {
// http://kevin.vanzonneveld.net
// + original by: Brett Zamir (http://brett-zamir.me)
// * example 1: restore_exception_handler();
// * returns 1: true
// Fix: Docs suggest can revert to built-in function; where/how is it set? in ini somewhere?
if (!this.php_js || !this.php_js.previous_exception_handler) {
return true; // function always returns true
}
this.php_js.exception_handler = this.php_js.previous_exception_handler;
return true;
}