Skip to content

Instantly share code, notes, and snippets.

@raytiley
Created April 20, 2016 11:44
Show Gist options
  • Save raytiley/c7714b49d32369c7377bf7e1f08b7d8a to your computer and use it in GitHub Desktop.
Save raytiley/c7714b49d32369c7377bf7e1f08b7d8a to your computer and use it in GitHub Desktop.
export default {
add(array, item) {
return array.concat([item]);
},
remove(array, item) {
return array.filter((i) => {
return i !== item;
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment