From 6220128a749993d398fcc1124f2dc005aa166916 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Mon, 22 Jan 2018 17:09:58 +0000 Subject: [PATCH] Fixed delimiter options in StrUtils. Closes #238. --- src/core/config/OperationConfig.js | 2 +- src/core/operations/StrUtils.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/core/config/OperationConfig.js b/src/core/config/OperationConfig.js index ec47384d..e7775e1c 100755 --- a/src/core/config/OperationConfig.js +++ b/src/core/config/OperationConfig.js @@ -2154,7 +2154,7 @@ const OperationConfig = { { name: "Invert condition", type: "boolean", - value: SeqUtils.SORT_REVERSE + value: false }, ] }, diff --git a/src/core/operations/StrUtils.js b/src/core/operations/StrUtils.js index 6ca93253..7e7f8b33 100755 --- a/src/core/operations/StrUtils.js +++ b/src/core/operations/StrUtils.js @@ -104,6 +104,12 @@ const StrUtils = { }, + /** + * @constant + * @default + */ + DELIMITER_OPTIONS: ["Line feed", "CRLF", "Space", "Comma", "Semi-colon", "Colon", "Nothing (separate chars)"], + /** * Filter operation. *