(cepRawValue)
| 80 | } |
| 81 | |
| 82 | function removeSpecialCharacters (cepRawValue) { |
| 83 | return cepRawValue.toString().replace(/\D+/g, '') |
| 84 | } |
| 85 | |
| 86 | function leftPadWithZeros (cepCleanValue) { |
| 87 | return '0'.repeat(CEP_SIZE - cepCleanValue.length) + cepCleanValue |
nothing calls this directly
no outgoing calls
no test coverage detected