Skip to content

Instantly share code, notes, and snippets.

@colinmeinke
Created April 2, 2020 14:04
Show Gist options
  • Save colinmeinke/56739741a4f9e5f49283b18ac2d032f6 to your computer and use it in GitHub Desktop.
Save colinmeinke/56739741a4f9e5f49283b18ac2d032f6 to your computer and use it in GitHub Desktop.
const update = async items => {
while (items.length > 0) {
const item = items.shift()
await Cart.removeItem(item.key)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment