Converts value into array object with empty array as default. Strings with comma-delimited values are split into array of strings.
the list to convert.
array object or empty array when value is null
Converts value into array object with empty array as default. Single values are converted into arrays with single element.
the value to convert.
array object or empty array when value is null.
Converts value into array object with specified default. Single values are converted into arrays with single element.
the value to convert.
default array object.
array object or default array when value is null.
Converts value into array object. Single values are converted into arrays with a single element.
the value to convert.
array object or null when value is null.
Generated using TypeDoc
Converts arbitrary values into array objects.
Example
let value1 = ArrayConverter.toArray([1, 2]); // Result: [1, 2] let value2 = ArrayConverter.toArray(1); // Result: [1] let value2 = ArrayConverter.listToArray("1,2,3"); // Result: ["1", "2", "3"]