From aa2b3b2843a712532122ab949d7e1680faf18cc5 Mon Sep 17 00:00:00 2001 From: n1474335 Date: Thu, 18 Jan 2018 15:26:09 +0000 Subject: [PATCH] Changed order of split delimiters, placing comma first. --- src/core/operations/StrUtils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operations/StrUtils.js b/src/core/operations/StrUtils.js index d3695893..6ca93253 100755 --- a/src/core/operations/StrUtils.js +++ b/src/core/operations/StrUtils.js @@ -66,10 +66,10 @@ const StrUtils = { * @default */ SPLIT_DELIM_OPTIONS: [ + {name: "Comma", value: ","}, + {name: "Space", value: " "}, {name: "Line feed", value: "\\n"}, {name: "CRLF", value: "\\r\\n"}, - {name: "Space", value: " "}, - {name: "Comma", value: ","}, {name: "Semi-colon", value: ";"}, {name: "Colon", value: ":"}, {name: "Nothing (separate chars)", value: ""}