We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69aa725 commit d07fa7dCopy full SHA for d07fa7d
src/cep-promise.js
@@ -1,7 +1,7 @@
1
'use strict'
2
3
import CepPromiseError from './errors/cep-promise.js'
4
-import { CepAbertoService, CorreiosService, ViaCepService } from './services/index.js'
+import { CorreiosService, ViaCepService } from './services/index.js'
5
import Promise from './utils/promise-any.js'
6
7
const CEP_SIZE = 8
@@ -59,7 +59,6 @@ function validateInputLength (cepWithLeftPad) {
59
60
function fetchCepFromServices (cepWithLeftPad) {
61
return Promise.any([
62
- CepAbertoService(cepWithLeftPad),
63
CorreiosService(cepWithLeftPad),
64
ViaCepService(cepWithLeftPad)
65
])
0 commit comments