UNPKG

jsforce

Version:

Salesforce API Library for JavaScript

16 lines (15 loc) 219 B
/** * */ Function.prototype.check = function(done) { var fn = this; return function() { try { fn.apply(this, arguments); return done(); } catch(e) { done(e); throw e; } }; };