@tagplus/components 4.7.8 → 4.7.9
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/dist/tp.common.js +1 -1
- package/dist/tp.common.js.map +1 -1
- package/dist/tp.umd.js +1 -1
- package/dist/tp.umd.js.map +1 -1
- package/dist/tp.umd.min.js +1 -1
- package/dist/tp.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/currency.js +1 -1
package/package.json
CHANGED
package/src/utils/currency.js
CHANGED
|
@@ -101,7 +101,7 @@ function removeSecondSeparator (input, locale) {
|
|
|
101
101
|
// Separa a string pelo decimal
|
|
102
102
|
const newInputParts = input.split(decimal)
|
|
103
103
|
|
|
104
|
-
if (newInputParts.length
|
|
104
|
+
if (newInputParts.length) {
|
|
105
105
|
let newInput = ''
|
|
106
106
|
|
|
107
107
|
// Percorre as partes dividas da string limpando tudo que nao for numerico depois do separador decimal
|