2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-22 19:23:40 +00:00

Extract RGBA Values Operation

This commit is contained in:
Ge0rg3
2019-08-28 09:58:00 +01:00
parent 4e8a79d8f1
commit 48831225ac
3 changed files with 75 additions and 0 deletions

View File

@@ -72,3 +72,12 @@ export const JOIN_DELIM_OPTIONS = [
{name: "Nothing (join chars)", value: ""}
];
/*
RGBA list delimiters.
*/
export const RGBA_DELIM_OPTIONS = [
{name: "Comma", value: ","},
{name: "Space", value: " "},
{name: "CRLF", value: "\\r\\n"},
{name: "Line Feed", value: "\n"}
];