mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 08:16:17 -04:00
18 lines
411 B
JavaScript
18 lines
411 B
JavaScript
![]() |
/**
|
||
|
* Various delimiters
|
||
|
*
|
||
|
* @author n1474335 [n1474335@gmail.com]
|
||
|
* @copyright Crown Copyright 2018
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Generic sequence delimiters.
|
||
|
*/
|
||
|
export const DELIM_OPTIONS = ["Space", "Comma", "Semi-colon", "Colon", "Line feed", "CRLF"];
|
||
|
|
||
|
/**
|
||
|
* Binary sequence delimiters.
|
||
|
*/
|
||
|
export const BIN_DELIM_OPTIONS = ["Space", "Comma", "Semi-colon", "Colon", "Line feed", "CRLF", "None"];
|