Skip to content

Instantly share code, notes, and snippets.

@robzhu
Created May 2, 2019 18:18
Show Gist options
  • Save robzhu/5ff8774925c70105ab786b8fe530a54a to your computer and use it in GitHub Desktop.
Save robzhu/5ff8774925c70105ab786b8fe530a54a to your computer and use it in GitHub Desktop.
function toArrayfromSet(set) {
if (!set) return [];
if (Array.isArray(set)) return set;
return Array.isArray(set.values) ? set.values : [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment