MCPcopy Create free account
hub / github.com/BrasilAPI/BrasilAPI / mapUfToUfCode

Function mapUfToUfCode

util/mapUfToUfCode.js:38–46  ·  view source on GitHub ↗
(uf)

Source from the content-addressed store, hash-verified

36 * @returns {number} UF Code
37 */
38export default function mapUfToUfCode(uf) {
39 uf = uf.toUpperCase();
40 let ufCode = UF_CODE_MAPPER[uf];
41 if(!ufCode){
42 throw new NotFoundError(`UF ${uf} não encontrado`);
43 }
44
45 return ufCode;
46}

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected