Skip to content

Instantly share code, notes, and snippets.

@calvintwr
Created January 22, 2015 11:58
Show Gist options
  • Save calvintwr/74a1d27b497656fa08bf to your computer and use it in GitHub Desktop.
Save calvintwr/74a1d27b497656fa08bf to your computer and use it in GitHub Desktop.
dottie set()
//code
console.log(1);
console.log(user.dataMeta);
D.set(user, 'dataMeta.dataShop.shipping', req.body.data.dataShop.shipping);
console.log(2)
console.log(user.dataMeta);
//console output
1
{ dataShop: { currency: 'usd', isShippingDataComplete: false } }
2
{ dataShop: { shipping: { light: [Object] } } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment