Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created April 17, 2016 23:56
Show Gist options
  • Save bryceadams/cc38eb6dd120b1b1dc4bbc6ee28ace69 to your computer and use it in GitHub Desktop.
Save bryceadams/cc38eb6dd120b1b1dc4bbc6ee28ace69 to your computer and use it in GitHub Desktop.
// Get the order's first item
var line_items = webhookBody.order.line_items;
var item1 = line_items[0];
var itemName = item1.name.replace(/ /g,"_");
console.log(itemName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment