@lion/localize
Advanced tools
Comparing version 0.4.12 to 0.4.13
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.4.13](https://github.com/ing-bank/lion/compare/@lion/localize@0.4.12...@lion/localize@0.4.13) (2019-08-15) | ||
### Bug Fixes | ||
* **localize:** update the way to obtain the group separator for a number ([b0d6f49](https://github.com/ing-bank/lion/commit/b0d6f49)) | ||
## [0.4.12](https://github.com/ing-bank/lion/compare/@lion/localize@0.4.11...@lion/localize@0.4.12) (2019-08-07) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "@lion/localize", | ||
"version": "0.4.12", | ||
"version": "0.4.13", | ||
"description": "The localization system helps to manage localization data split into locales and automate its loading", | ||
@@ -45,3 +45,3 @@ "author": "ing-bank", | ||
}, | ||
"gitHead": "e15c943c1f58670443be6890b65b5b750a79814b" | ||
"gitHead": "d406de45d6c0980fb4c1f2186ea5585667045074" | ||
} |
@@ -15,4 +15,4 @@ import { getLocale } from './getLocale.js'; | ||
minimumFractionDigits: 0, | ||
}).format('1000'); | ||
return normalSpaces(formattedNumber[1]); | ||
}).format('10000'); | ||
return normalSpaces(formattedNumber[2]); | ||
} |
@@ -10,3 +10,4 @@ import { expect } from '@open-wc/testing'; | ||
expect(getGroupSeparator('fr-FR')).to.equal(' '); | ||
expect(getGroupSeparator('es-ES')).to.equal('.'); | ||
}); | ||
}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
140385
2805