Skip to content

Commit d221926

Browse files
committed
Version 4.3.8
1 parent d36951f commit d221926

32 files changed

+89
-2348
lines changed

Diff for: ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2023-12-08 Saša Jovanić <[email protected]>
2+
* Version 4.3.8
3+
4+
2023-12-06 Artur Aralin <[email protected]>
5+
* Remove `console.log`
6+
17
2023-12-03 Saša Jovanić <[email protected]>
28
* Version 4.3.7
39

Diff for: dist/ibantools.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ define(["require", "exports"], function (require, exports) {
99
* @package Documentation
1010
* @author Saša Jovanić
1111
* @module ibantools
12-
* @version 4.3.7
12+
* @version 4.3.8
1313
* @license MPL-2.0
1414
* @preferred
1515
*/
@@ -805,7 +805,6 @@ define(["require", "exports"], function (require, exports) {
805805
return number * weight;
806806
})
807807
.reduce(function (a, b) { return a + b; });
808-
console.log(sum);
809808
return sum % 11 === 0;
810809
};
811810
/**

Diff for: docs/assets/style.css

+11
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
--light-color-text-aside: #6e6e6e;
1212
--light-color-link: #1f70c2;
1313

14+
--light-color-ts-keyword: #056bd6;
1415
--light-color-ts-project: #b111c9;
1516
--light-color-ts-module: var(--light-color-ts-project);
1617
--light-color-ts-namespace: var(--light-color-ts-project);
@@ -50,6 +51,7 @@
5051
--dark-color-text-aside: #dddddd;
5152
--dark-color-link: #00aff4;
5253

54+
--dark-color-ts-keyword: #3399ff;
5355
--dark-color-ts-project: #e358ff;
5456
--dark-color-ts-module: var(--dark-color-ts-project);
5557
--dark-color-ts-namespace: var(--dark-color-ts-project);
@@ -91,6 +93,7 @@
9193
--color-text-aside: var(--light-color-text-aside);
9294
--color-link: var(--light-color-link);
9395

96+
--color-ts-keyword: var(--light-color-ts-keyword);
9497
--color-ts-module: var(--light-color-ts-module);
9598
--color-ts-namespace: var(--light-color-ts-namespace);
9699
--color-ts-enum: var(--light-color-ts-enum);
@@ -132,6 +135,7 @@
132135
--color-text-aside: var(--dark-color-text-aside);
133136
--color-link: var(--dark-color-link);
134137

138+
--color-ts-keyword: var(--dark-color-ts-keyword);
135139
--color-ts-module: var(--dark-color-ts-module);
136140
--color-ts-namespace: var(--dark-color-ts-namespace);
137141
--color-ts-enum: var(--dark-color-ts-enum);
@@ -180,6 +184,7 @@ body {
180184
--color-text-aside: var(--light-color-text-aside);
181185
--color-link: var(--light-color-link);
182186

187+
--color-ts-keyword: var(--light-color-ts-keyword);
183188
--color-ts-module: var(--light-color-ts-module);
184189
--color-ts-namespace: var(--light-color-ts-namespace);
185190
--color-ts-enum: var(--light-color-ts-enum);
@@ -219,6 +224,7 @@ body {
219224
--color-text-aside: var(--dark-color-text-aside);
220225
--color-link: var(--dark-color-link);
221226

227+
--color-ts-keyword: var(--dark-color-ts-keyword);
222228
--color-ts-module: var(--dark-color-ts-module);
223229
--color-ts-namespace: var(--dark-color-ts-namespace);
224230
--color-ts-enum: var(--dark-color-ts-enum);
@@ -984,6 +990,11 @@ a.tsd-index-link {
984990
overflow-x: auto;
985991
}
986992

993+
.tsd-signature-keyword {
994+
color: var(--color-ts-keyword);
995+
font-weight: normal;
996+
}
997+
987998
.tsd-signature-symbol {
988999
color: var(--color-text-aside);
9891000
font-weight: normal;

Diff for: docs/enums/ValidationErrorsBIC.html

+3-99
Large diffs are not rendered by default.

Diff for: docs/enums/ValidationErrorsIBAN.html

+3-129
Large diffs are not rendered by default.

Diff for: docs/functions/composeIBAN.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/electronicFormatIBAN.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/extractBIC.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/extractIBAN.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/friendlyFormatIBAN.html

+2-77
Large diffs are not rendered by default.

Diff for: docs/functions/getCountrySpecifications.html

+2-70
Large diffs are not rendered by default.

Diff for: docs/functions/isQRIBAN.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/isSEPACountry.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/isValidBBAN.html

+2-77
Large diffs are not rendered by default.

Diff for: docs/functions/isValidBIC.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/isValidIBAN.html

+2-77
Large diffs are not rendered by default.

Diff for: docs/functions/setCountryBBANValidation.html

+2-88
Large diffs are not rendered by default.

Diff for: docs/functions/validateBIC.html

+2-75
Large diffs are not rendered by default.

Diff for: docs/functions/validateIBAN.html

+2-77
Large diffs are not rendered by default.

Diff for: docs/index.html

+2-85
Large diffs are not rendered by default.

Diff for: docs/interfaces/ComposeIBANParams.html

+3-97
Large diffs are not rendered by default.

Diff for: docs/interfaces/CountryMap.html

+2-73
Large diffs are not rendered by default.

Diff for: docs/interfaces/CountrySpec.html

+3-109
Large diffs are not rendered by default.

Diff for: docs/interfaces/ExtractBICResult.html

+3-121
Large diffs are not rendered by default.

Diff for: docs/interfaces/ExtractIBANResult.html

+3-127
Large diffs are not rendered by default.

Diff for: docs/interfaces/ValidateBICResult.html

+3-97
Large diffs are not rendered by default.

Diff for: docs/interfaces/ValidateIBANOptions.html

+3-91
Large diffs are not rendered by default.

Diff for: docs/interfaces/ValidateIBANResult.html

+3-97
Large diffs are not rendered by default.

Diff for: docs/modules.html

+8-87
Large diffs are not rendered by default.

Diff for: docs/variables/countrySpecs.html

+2-66
Large diffs are not rendered by default.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ibantools",
3-
"version": "4.3.7",
3+
"version": "4.3.8",
44
"description": "Validation, extraction and creation of IBAN, BBAN, BIC/SWIFT numbers plus some other helpful stuff like ISO 3136-1 alpha 2 country list",
55
"keywords": [
66
"IBAN",

Diff for: src/ibantools.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @package Documentation
1010
* @author Saša Jovanić
1111
* @module ibantools
12-
* @version 4.3.7
12+
* @version 4.3.8
1313
* @license MPL-2.0
1414
* @preferred
1515
*/

0 commit comments

Comments
 (0)