mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
Changed order of split delimiters, placing comma first.
This commit is contained in:
parent
90d8be48d4
commit
aa2b3b2843
1 changed files with 2 additions and 2 deletions
|
@ -66,10 +66,10 @@ const StrUtils = {
|
|||
* @default
|
||||
*/
|
||||
SPLIT_DELIM_OPTIONS: [
|
||||
{name: "Comma", value: ","},
|
||||
{name: "Space", value: " "},
|
||||
{name: "Line feed", value: "\\n"},
|
||||
{name: "CRLF", value: "\\r\\n"},
|
||||
{name: "Space", value: " "},
|
||||
{name: "Comma", value: ","},
|
||||
{name: "Semi-colon", value: ";"},
|
||||
{name: "Colon", value: ":"},
|
||||
{name: "Nothing (separate chars)", value: ""}
|
||||
|
|
Loading…
Reference in a new issue