Skip to content

Instantly share code, notes, and snippets.

@ValentaTomas
Created November 8, 2022 17:29
Show Gist options
  • Save ValentaTomas/a5621836636c96b20a16d237670413d4 to your computer and use it in GitHub Desktop.
Save ValentaTomas/a5621836636c96b20a16d237670413d4 to your computer and use it in GitHub Desktop.
Wrap the argument in an array if it is not already an array
export function asArray<T>(item: T | T[]) {
return Array.isArray(item) ? item : [item]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment