UNPKG

jsforce

Version:

Salesforce API Library for JavaScript

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