ibantools 4.5.0 → 4.5.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/README.md +3 -2
- package/build/ibantools.js +9 -3
- package/jsnext/ibantools.js +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# IBANTools
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
|
+

|
|
4
5
|
|
|
5
|
-

|
|
6
|
+

|
|
6
7
|
[](https://badge.fury.io/js/ibantools)
|
|
7
8
|
[](https://www.npmjs.com/package/ibantools)
|
|
8
9
|

|
package/build/ibantools.js
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* @package Documentation
|
|
13
13
|
* @author Saša Jovanić
|
|
14
14
|
* @module ibantools
|
|
15
|
-
* @version 4.5.
|
|
15
|
+
* @version 4.5.1
|
|
16
16
|
* @license MIT or MPL-2.0
|
|
17
17
|
* @preferred
|
|
18
18
|
*/
|
|
@@ -1045,7 +1045,7 @@ exports.countrySpecs = {
|
|
|
1045
1045
|
SEPA: true,
|
|
1046
1046
|
branch_indentifier: '4-7',
|
|
1047
1047
|
bank_identifier: '0-3',
|
|
1048
|
-
account_indentifier: '
|
|
1048
|
+
account_indentifier: '14-24',
|
|
1049
1049
|
},
|
|
1050
1050
|
ET: {},
|
|
1051
1051
|
FI: {
|
|
@@ -1452,7 +1452,13 @@ exports.countrySpecs = {
|
|
|
1452
1452
|
NR: {},
|
|
1453
1453
|
NU: {},
|
|
1454
1454
|
NZ: {},
|
|
1455
|
-
OM: {
|
|
1455
|
+
OM: {
|
|
1456
|
+
chars: 23,
|
|
1457
|
+
bban_regexp: '^[0-9]{3}[A-Z0-9]{16}$',
|
|
1458
|
+
IBANRegistry: true,
|
|
1459
|
+
SEPA: false,
|
|
1460
|
+
bank_identifier: '0-2',
|
|
1461
|
+
},
|
|
1456
1462
|
PA: {},
|
|
1457
1463
|
PE: {},
|
|
1458
1464
|
PF: {
|
package/jsnext/ibantools.js
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* @package Documentation
|
|
13
13
|
* @author Saša Jovanić
|
|
14
14
|
* @module ibantools
|
|
15
|
-
* @version 4.5.
|
|
15
|
+
* @version 4.5.1
|
|
16
16
|
* @license MIT or MPL-2.0
|
|
17
17
|
* @preferred
|
|
18
18
|
*/
|
|
@@ -1029,7 +1029,7 @@ export var countrySpecs = {
|
|
|
1029
1029
|
SEPA: true,
|
|
1030
1030
|
branch_indentifier: '4-7',
|
|
1031
1031
|
bank_identifier: '0-3',
|
|
1032
|
-
account_indentifier: '
|
|
1032
|
+
account_indentifier: '14-24',
|
|
1033
1033
|
},
|
|
1034
1034
|
ET: {},
|
|
1035
1035
|
FI: {
|
|
@@ -1436,7 +1436,13 @@ export var countrySpecs = {
|
|
|
1436
1436
|
NR: {},
|
|
1437
1437
|
NU: {},
|
|
1438
1438
|
NZ: {},
|
|
1439
|
-
OM: {
|
|
1439
|
+
OM: {
|
|
1440
|
+
chars: 23,
|
|
1441
|
+
bban_regexp: '^[0-9]{3}[A-Z0-9]{16}$',
|
|
1442
|
+
IBANRegistry: true,
|
|
1443
|
+
SEPA: false,
|
|
1444
|
+
bank_identifier: '0-2',
|
|
1445
|
+
},
|
|
1440
1446
|
PA: {},
|
|
1441
1447
|
PE: {},
|
|
1442
1448
|
PF: {
|
package/package.json
CHANGED