You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
412 B
19 lines
412 B
const {
|
|
REQUIRED_ERROR,
|
|
INVALID_RECIPIENT_ADDRESS_ERROR,
|
|
} = require('../../send.constants')
|
|
const { isValidAddress } = require('../../../../util')
|
|
|
|
function getToErrorObject (to, toError = null) {
|
|
if (!to) {
|
|
toError = REQUIRED_ERROR
|
|
} else if (!isValidAddress(to) && !toError) {
|
|
toError = INVALID_RECIPIENT_ADDRESS_ERROR
|
|
}
|
|
|
|
return { to: toError }
|
|
}
|
|
|
|
module.exports = {
|
|
getToErrorObject,
|
|
}
|
|
|