Files

7 lines
226 B
JavaScript
Raw Permalink Normal View History

const toList = (candidate, skipEmpty = false) => {
if (skipEmpty && (candidate === undefined || candidate === null)) {
return [];
}
return Array.isArray(candidate) ? candidate : [candidate];
};
export default toList;