aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/util.js
blob: bddd60ee8c60b065b8b5e97e9133b3b6c1d5bb0a (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = {
  getStack,
}

function getStack () {
  const stack = new Error('Stack trace generator - not an error').stack
  return stack
}