ibantools 4.3.0 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ibantools.js +6 -2
- package/jsnext/ibantools.js +5 -1
- package/package.json +1 -1
package/build/ibantools.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* @package Documentation
|
|
9
9
|
* @author Saša Jovanić
|
|
10
10
|
* @module ibantools
|
|
11
|
-
* @version 4.3.
|
|
11
|
+
* @version 4.3.1
|
|
12
12
|
* @license MPL-2.0
|
|
13
13
|
* @preferred
|
|
14
14
|
*/
|
|
@@ -1345,7 +1345,11 @@ exports.countrySpecs = {
|
|
|
1345
1345
|
bban_validation_func: checkMod9710BBAN,
|
|
1346
1346
|
IBANRegistry: true,
|
|
1347
1347
|
},
|
|
1348
|
-
RU: {
|
|
1348
|
+
RU: {
|
|
1349
|
+
chars: 33,
|
|
1350
|
+
bban_regexp: '^[0-9]{14}[A-Z0-9]{15}$',
|
|
1351
|
+
IBANRegistry: true,
|
|
1352
|
+
},
|
|
1349
1353
|
RW: {},
|
|
1350
1354
|
SA: {
|
|
1351
1355
|
chars: 24,
|
package/jsnext/ibantools.js
CHANGED
|
@@ -1329,7 +1329,11 @@ export var countrySpecs = {
|
|
|
1329
1329
|
bban_validation_func: checkMod9710BBAN,
|
|
1330
1330
|
IBANRegistry: true,
|
|
1331
1331
|
},
|
|
1332
|
-
RU: {
|
|
1332
|
+
RU: {
|
|
1333
|
+
chars: 33,
|
|
1334
|
+
bban_regexp: '^[0-9]{14}[A-Z0-9]{15}$',
|
|
1335
|
+
IBANRegistry: true,
|
|
1336
|
+
},
|
|
1333
1337
|
RW: {},
|
|
1334
1338
|
SA: {
|
|
1335
1339
|
chars: 24,
|
package/package.json
CHANGED