Skip to content

Instantly share code, notes, and snippets.

@herber
Created August 20, 2017 12:11
Show Gist options
  • Save herber/1e22170ac69e82abc29da459a547bf75 to your computer and use it in GitHub Desktop.
Save herber/1e22170ac69e82abc29da459a547bf75 to your computer and use it in GitHub Desktop.
Transform anything into an array.
const toArray = array => {
if (array instanceof Array) return array;
if (array === null || array === undefined) return [];
return [array];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment