UNPKG

balanceofsatoshis

Version:
17 lines (12 loc) 287 B
const {parseErrors} = require('./constants'); const defaultError = '#ERROR!'; /** Describe a hot formula parser error { error: <Error Type String> } @returns <Display String> */ module.exports = ({error}) => { return parseErrors[error] || parseErrors[defaultError]; };