mirror of
https://github.com/gchq/CyberChef
synced 2025-12-16 00:04:20 +00:00
Fix bug in Normalise Unicode operation: replace nfc by nfkc
This commit is contained in:
@@ -51,7 +51,7 @@ class NormaliseUnicode extends Operation {
|
||||
case "NFKD":
|
||||
return unorm.nfkd(input);
|
||||
case "NFKC":
|
||||
return unorm.nfc(input);
|
||||
return unorm.nfkc(input);
|
||||
default:
|
||||
throw new OperationError("Unknown Normalisation Form");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user