<%- (err.name) ? (err.name + ': ') : '' %> <% err.message.split('\n').forEach(function(l) { %><%= l %>
<% }) %>
<% lines.forEach(function(line) { %>
-
at <%= lines.functionName || 'anonymous' %>
(<%= line.fileName + ':' + line.lineNumber + ':' + line.columnNumber %>)
<%- line.content %>
<% }) %>
Full stack:
<% err.stack.split('\n').forEach(function(line) { %>
- <%- line.replace(/ /g, ' ') %>
<% }) %>