var isArray = require("lodash/isArray");
/**
* Converts a value to an array
* @param {*} value - The value to convert
* @return {Array}
*/module.exports = functionarrify(value) {
if (value == null) {
return [];
}
returnisArray(value) ? value : [value];
};