electrum-mnemonic
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "electrum-mnemonic", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Electrum Mnemonics (electrum v2 and greater)", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -51,3 +51,5 @@ "use strict"; | ||
str = removeCombiningCharacters(str); | ||
// 4. normalize whitespaces DONE by NFKD normalize | ||
// 4. normalize whitespaces DONE (Note: need to remove multiple spaces) | ||
// Note: Python split() does a trim before making the list | ||
str = str.trim().split(/\s+/).join(' '); | ||
// 5. remove whitespaces between CJK | ||
@@ -54,0 +56,0 @@ return removeCJKSpaces(str); |
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
44830
2322