Commit d071c474 authored by jgould's avatar jgould

convert to string array

parent bd9f6386
......@@ -182,6 +182,9 @@ morpheus.VectorUtil.maybeConvertToStringArray = function (vector, delim) {
for (var i = 0, nrows = vector.size(); i < nrows; i++) {
var s = vector.getValue(i);
if (s != null) {
if (!s.split) {
return false;
}
var tokens = s.split(regex);
newValues.push(tokens);
if (!found && tokens.length > 1) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment