Your IP : 216.73.217.154


Current Path : /var/www/html/eform/npm/Ladda/node_modules/rollup-pluginutils/src/utils/
Upload File :
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];
}