Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#415] Changed implementation of asArray function #464

Merged
merged 1 commit into from
Jun 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions src/utils/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,16 @@ const transformReferences = <Type extends AbstractModel>(b: Type, transformer: <
return bCopy;
};

export const asArray = (objectOrArray) => {
if (!objectOrArray) {
return [];
}
if (Array.isArray(objectOrArray)) {
return objectOrArray;
}
return [objectOrArray];
};
/**
* Ensures that the specified argument is returned as an array at all conditions.
*
* If the argument is a single element, it is returned as a single-element array.
* @param arr Input to sanitize
*/

export function asArray<T>(arr: T[] | T | undefined | null): T[] {
return arr ? (Array.isArray(arr) ? arr : [arr]) : [];
}

/**
* Return reordered list of entities so that selected entity will become first,
Expand Down