Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@IOIO72
Created May 10, 2019 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IOIO72/2aecc7241492470df4448fc7b9c1305f to your computer and use it in GitHub Desktop.
Save IOIO72/2aecc7241492470df4448fc7b9c1305f to your computer and use it in GitHub Desktop.
Takes any object and returns it as an array or returns the same given array
const convertToArray = any => (Array.isArray(any)) ? any : [any];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment