department-of-veterans-affairs/vets-website

View on GitHub
src/applications/personalization/view-representative/util/index.js

Summary

Maintainability
A
0 mins
Test Coverage
const SERVER_ERROR_REGEX = /^5\d{2}$/;
const CLIENT_ERROR_REGEX = /^4\d{2}$/;

export const isServerError = errCode => SERVER_ERROR_REGEX.test(errCode);
export const isClientError = errCode => CLIENT_ERROR_REGEX.test(errCode);