in legacy/routes/queries.js [78:88]
var validateArrayQuery = function (arrayValue, separator) {
var testValue = arrayValue;
if (Array.isArray(arrayValue)) {
if (arrayValue.length != 4) {
return false;
}
testValue = arrayValue.toString();
}
console.log('received array value "' + testValue + '" separator "' + separator + '"');
return testValue === "ArrayQuery1" + separator + "begin!*'();:@ &=+$,/?#[]end" + separator + separator;
};