1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
const { isValidAddress } = require('../../../../util') function getToErrorObject (to) { let toError = null if (!to) { toError = 'required' } else if (!isValidAddress(to)) { toError = 'invalidAddressRecipient' } return { to: toError } } module.exports = { getToErrorObject }