UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

11 lines (9 loc) 284 B
module.exports = function(){ var orig = Error.prepareStackTrace; Error.prepareStackTrace = function(_, stack){ return stack; }; var err = new Error; Error.captureStackTrace(err, arguments.callee); var stack = err.stack; Error.prepareStackTrace = orig; return stack; };