summaryrefslogtreecommitdiff
path: root/node_modules/rollup-pluginutils/src/utils/ensureArray.ts
blob: 0e8f212193b74bc7c85e7c790483bb2f4e710c0f (plain)
1
2
3
4
5
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];
}