import { isArray } from"lodash-es";
/**
* Type guard for checking if a value is multiple items or not
*
* @paramvalue - The value to check
* @returns True if value is multiple items, false otherwise
*/exportfunctionisMultiple(value) {
returnisArray(value);
}