@sankhyalabs/core-docs 4.0.1 → 4.0.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/classes/NumberUtils.md +11 -11
- package/package.json +1 -1
package/classes/NumberUtils.md
CHANGED
@@ -203,20 +203,20 @@ Realiza o arredondamento de casas decimais de um numero.
|
|
203
203
|
**`Example`**
|
204
204
|
|
205
205
|
```ts
|
206
|
-
|
207
|
-
|
206
|
+
Informo: (100.12) | 100.12
|
207
|
+
Informo: (100,12) | NaN
|
208
208
|
|
209
|
-
|
210
|
-
|
211
|
-
|
209
|
+
Informo: ("100.12", 1) | 100.1
|
210
|
+
Informo: ("100.12", 2) | 100.12
|
211
|
+
Informo: ("100.12", 3) | 100.12
|
212
212
|
|
213
|
-
|
214
|
-
|
215
|
-
|
213
|
+
Informo: ("100.15", 1) | 100.2
|
214
|
+
Informo: ("100.15", 2) | 100.15
|
215
|
+
Informo: ("100.15", 3) | 100.15
|
216
216
|
|
217
|
-
|
218
|
-
|
219
|
-
|
217
|
+
Informo: ("100.16", 1) | 100.2
|
218
|
+
Informo: ("100.16", 2) | 100.16
|
219
|
+
Informo: ("100.16", 3) | 100.16
|
220
220
|
```
|
221
221
|
|
222
222
|
#### Parameters
|