| Current Path : /var/www/html/eform/npm/Ladda/node_modules/rollup-pluginutils/src/utils/ |
| Current File : /var/www/html/eform/npm/Ladda/node_modules/rollup-pluginutils/src/utils/ensureArray.ts |
export default function ensureArray<T>(thing: Array<T> | T | undefined | null): Array<T> {
if (Array.isArray(thing)) return thing;
if (thing == undefined) return [];
return [thing];
}