Uh oh!
There was an error while loading. Please reload this page.
feat(niceToHave): Export list of country codes that implement IBAN - #1669
Conversation
Codecov Report
@@ Coverage Diff @@## master #1669 +/- ##
=========================================
Coverage 100.00% 100.00% =========================================
Files 101 101 Lines 1854 1855 +1 =========================================
+ Hits 1854 1855 +1
Continue to review full report at Codecov.
|
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Federico Ciardi <fed.ciardi@gmail.com>
| import isISRC from './lib/isISRC'; | ||
| import isIBAN from './lib/isIBAN'; | ||
| import isIBAN, { locales as isIBANLocales } from './lib/isIBAN'; |
There was a problem hiding this comment.
May be calling them isIBANLocales could be a little misleading, might think it's a validator/function. Perhaps just drop the is?
There was a problem hiding this comment.
@profnandaa I see what you're saying, but I think it's more inline with the rest of the code to call it isIBANLocales
profnandaa
commented
May 24, 2021
Check also the failing tests. |
drorheller
commented
May 25, 2021
@profnandaa pushed test fixes, could you please approve running the workflow? |
drorheller
commented
Jul 11, 2021
Hi @fedeci :) |
| import { locales as isAlphanumericLocales } from '../src/lib/isAlphanumeric'; | ||
| import { locales as isMobilePhoneLocales } from '../src/lib/isMobilePhone'; | ||
| import { locales as isFloatLocales } from '../src/lib/isFloat'; | ||
| import { locales as ibanCountryCodes } from '../src/lib/isIBAN'; |
There was a problem hiding this comment.
| import{localesasibanCountryCodes}from'../src/lib/isIBAN'; | |
| import{localesasisIBANLocales}from'../src/lib/isIBAN'; |
I would name it isIBANLocales to align to the other one.
drorheller
commented
Jul 11, 2021
@fedeci got you, just made the change |
profnandaa
left a comment
There was a problem hiding this comment.
LGTM, thanks for your contribution.
drorheller
commented
Jul 16, 2021
NP! thanks for your help :) |
Export a list of country codes implementing IBAN
Addressing issue #1570
Checklist