Skip to content

Commit

Permalink
fix(standards): change members exported name
Browse files Browse the repository at this point in the history
  • Loading branch information
drorHellerNielsen committed Jul 11, 2021
1 parent 7123c94 commit 6006307
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Expand Up @@ -48,7 +48,7 @@ import isHSL from './lib/isHSL';

import isISRC from './lib/isISRC';

import isIBAN, { locales as isIBANLocales } from './lib/isIBAN';
import isIBAN, { locales as ibanLocales } from './lib/isIBAN';
import isBIC from './lib/isBIC';

import isMD5 from './lib/isMD5';
Expand Down Expand Up @@ -222,7 +222,7 @@ const validator = {
isDate,
isLicensePlate,
isVAT,
isIBANLocales,
ibanLocales,
};

export default validator;
2 changes: 1 addition & 1 deletion test/exports.js
Expand Up @@ -54,6 +54,6 @@ describe('Exports', () => {

it('should export a list of country codes that implement IBAN', () => {
assert.ok(ibanCountryCodes instanceof Array);
assert.ok(validator.isIBANLocales instanceof Array);
assert.ok(validator.ibanLocales instanceof Array);
});
});

0 comments on commit 6006307

Please sign in to comment.