throw.js 93 B

12345
  1. module.exports = function (err) {
  2. setTimeout(function () {
  3. throw err;
  4. });
  5. };