Fixed delimiter options in StrUtils. Closes #238.

This commit is contained in:
n1474335 2018-01-22 17:09:58 +00:00
parent ec205f4f7d
commit 6220128a74
2 changed files with 7 additions and 1 deletions

View File

@ -2154,7 +2154,7 @@ const OperationConfig = {
{ {
name: "Invert condition", name: "Invert condition",
type: "boolean", type: "boolean",
value: SeqUtils.SORT_REVERSE value: false
}, },
] ]
}, },

View File

@ -104,6 +104,12 @@ const StrUtils = {
}, },
/**
* @constant
* @default
*/
DELIMITER_OPTIONS: ["Line feed", "CRLF", "Space", "Comma", "Semi-colon", "Colon", "Nothing (separate chars)"],
/** /**
* Filter operation. * Filter operation.
* *