UNPKG

@dashevo/wallet-lib

Version:
10 lines (8 loc) 273 B
const { DUFFS_PER_DASH } = require('../CONSTANTS'); function duffsToDash(duffs) { if (duffs === undefined || duffs.constructor.name !== Number.name) { throw new Error('Can only convert a number'); } return duffs / DUFFS_PER_DASH; } module.exports = duffsToDash;