mirror of
https://github.com/status-im/instabug-reactnative.git
synced 2025-03-03 14:40:54 +00:00
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
'use strict';
|
|
|
|
var stacktraceParser = require('stacktrace-parser');
|
|
|
|
function parseErrorStack(error) {
|
|
if (!error || !error.stack) {
|
|
return [];
|
|
}
|
|
return Array.isArray(error.stack) ? error.stack :
|
|
stacktraceParser.parse(error.stack);
|
|
}
|
|
|
|
module.exports = parseErrorStack; |