Add DATE_DELIM_OPTIONS

We do not want ":" since it's common in time strings. Same goes for space.
This commit is contained in:
tomgond 2024-04-03 22:41:02 +03:00 committed by GitHub
parent 5290e28ba2
commit 39df81acb5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,6 +46,12 @@ export const HASH_DELIM_OPTIONS = ["Line feed", "CRLF", "Space", "Comma"];
*/
export const IP_DELIM_OPTIONS = ["Line feed", "CRLF", "Space", "Comma", "Semi-colon"];
/**
* Date delimiters
*/
export const DATE_DELIM_OPTIONS = ["Line feed", "CRLF", "Comma", "Semi-colon"];
/**
* Split delimiters.
*/