UNPKG

ttk-app-core

Version:
21 lines (16 loc) 276 B
const exceptions = [] function error(err) { console.error(err) exceptions.unshift(err) } function clear() { exceptions.splice(0, exceptions.length) } function getExceptions() { return exceptions } export default { error, clear, getExceptions }