ibantools 4.3.1 → 4.3.2
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 +11 -3
- 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.2
|
|
12
12
|
* @license MPL-2.0
|
|
13
13
|
* @preferred
|
|
14
14
|
*/
|
|
@@ -1362,7 +1362,11 @@ exports.countrySpecs = {
|
|
|
1362
1362
|
bban_regexp: '^[A-Z]{4}[0-9]{20}[A-Z]{3}$',
|
|
1363
1363
|
IBANRegistry: true,
|
|
1364
1364
|
},
|
|
1365
|
-
SD: {
|
|
1365
|
+
SD: {
|
|
1366
|
+
chars: 18,
|
|
1367
|
+
bban_regexp: '^[0-9]{14}$',
|
|
1368
|
+
IBANRegistry: true,
|
|
1369
|
+
},
|
|
1366
1370
|
SE: { chars: 24, bban_regexp: '^[0-9]{20}$', IBANRegistry: true, SEPA: true },
|
|
1367
1371
|
SG: {},
|
|
1368
1372
|
SH: {},
|
|
@@ -1392,7 +1396,11 @@ exports.countrySpecs = {
|
|
|
1392
1396
|
chars: 28,
|
|
1393
1397
|
bban_regexp: '^[A-Z]{2}[0-9]{22}$',
|
|
1394
1398
|
},
|
|
1395
|
-
SO: {
|
|
1399
|
+
SO: {
|
|
1400
|
+
chars: 23,
|
|
1401
|
+
bban_regexp: '^[0-9]{19}$',
|
|
1402
|
+
IBANRegistry: true,
|
|
1403
|
+
},
|
|
1396
1404
|
SR: {},
|
|
1397
1405
|
SS: {},
|
|
1398
1406
|
ST: {
|
package/package.json
CHANGED