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.
20 lines
412 B
20 lines
412 B
7 years ago
|
const {
|
||
|
REQUIRED_ERROR,
|
||
|
INVALID_RECIPIENT_ADDRESS_ERROR,
|
||
|
} = require('../../send.constants')
|
||
7 years ago
|
const { isValidAddress } = require('../../../../util')
|
||
|
|
||
7 years ago
|
function getToErrorObject (to, toError = null) {
|
||
7 years ago
|
if (!to) {
|
||
7 years ago
|
toError = REQUIRED_ERROR
|
||
7 years ago
|
} else if (!isValidAddress(to) && !toError) {
|
||
7 years ago
|
toError = INVALID_RECIPIENT_ADDRESS_ERROR
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
7 years ago
|
return { to: toError }
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
7 years ago
|
getToErrorObject,
|
||
7 years ago
|
}
|