nhb-toolbox 4.23.23 → 4.23.24
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/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ All notable changes to the package will be documented here.
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [4.23.24] - 2025-10-26
|
|
10
|
+
|
|
11
|
+
- **Fixed** *pluralization issue* with ***suffixed*** `'-foot' --> '-feet'` for *format methods* in *converter classes*.
|
|
12
|
+
|
|
9
13
|
## [4.23.23] - 2025-10-26
|
|
10
14
|
|
|
11
15
|
- **Fixed** *pluralization issue* with `'foot' --> 'feet'` for *format methods* in *converter classes*.
|
|
@@ -87,7 +87,7 @@ export declare class $BaseConverter<Unit extends $Unit> {
|
|
|
87
87
|
divide(n: Numeric): this;
|
|
88
88
|
/**
|
|
89
89
|
* @instance Rounds to given decimal places.
|
|
90
|
-
* @param decimals Number of decimal places to round.
|
|
90
|
+
* @param decimals Number of decimal places to round. Default is `0`.
|
|
91
91
|
* @returns A new instance with rounded value.
|
|
92
92
|
*/
|
|
93
93
|
round(decimals?: number): this;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nhb-toolbox",
|
|
3
|
-
"version": "4.23.
|
|
3
|
+
"version": "4.23.24",
|
|
4
4
|
"description": "A versatile collection of smart, efficient, and reusable utility functions, classes and types for everyday development needs.",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|