asdf-games/node_modules/watchify-middleware/lib/parse-error.js

10 lines
292 B
JavaScript
Raw Normal View History

// parses a syntax error for pretty-printing to console
module.exports = parseError
function parseError (err) {
if (err.codeFrame) { // babelify@6.x
return [err.message, err.codeFrame].join('\n\n')
} else { // babelify@5.x and browserify
return err.annotated || err.message
}
}