Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default function validateAmount(options = {}) {
return validateFormat(Object.assign({}, options, { regex }));
}
export default function validateAccount(options = {}) {
return validateFormat(assign({}, options, { regex }));
}
export default function validateSeed(options = {}) {
return validateFormat(assign({}, options, { regex }));
}