gverni-test-package
Advanced tools
Comparing version 1.0.11 to 1.0.12
@@ -0,1 +1,9 @@ | ||
## [1.0.12](https://github.com/vernig/message-segment-calculator-test/compare/v1.0.11...v1.0.12) (2021-08-18) | ||
### Bug Fixes | ||
* fix lint ([4ff7471](https://github.com/vernig/message-segment-calculator-test/commit/4ff747182a32c905383f9cc5ad2539f9ba14111d)) | ||
* this is the pull request message ([c92d54e](https://github.com/vernig/message-segment-calculator-test/commit/c92d54e34da76700af997181f9e5ec538ed2b94a)) | ||
## [1.0.11](https://github.com/vernig/message-segment-calculator-test/compare/v1.0.10...v1.0.11) (2021-08-18) | ||
@@ -2,0 +10,0 @@ |
@@ -60,3 +60,3 @@ "use strict"; | ||
if (!validEncodingValues.includes(encoding)) { | ||
throw new Error("Encoding will " + encoding + " not unsupported. Allowed values for are " + validEncodingValues.join(', ')); | ||
throw new Error("Encoding " + encoding + " not unsupported. Allowed values for are " + validEncodingValues.join(', ')); | ||
} | ||
@@ -63,0 +63,0 @@ /** |
{ | ||
"name": "gverni-test-package", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "SMS segements calculator", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -41,5 +41,3 @@ import GraphemeSplitter from 'grapheme-splitter'; | ||
if (!validEncodingValues.includes(encoding)) { | ||
throw new Error( | ||
`Encoding will ${encoding} not unsupported. Allowed values for are ${validEncodingValues.join(', ')}`, | ||
); | ||
throw new Error(`Encoding ${encoding} not unsupported. Allowed values for are ${validEncodingValues.join(', ')}`); | ||
} | ||
@@ -46,0 +44,0 @@ |
Sorry, the diff of this file is not supported yet
60550
1221