| 1199 | // returns a valid state name else null |
| 1200 | |
| 1201 | const getStateNameByStateCode = code => stateNamesByCode[sanitizeStateCode(code)] || null |
| 1202 | |
| 1203 | // normalizes case and removes invalid characters |
| 1204 | // returns null if can't find sanitized name in the state map |
nothing calls this directly
no test coverage detected