Skip to content

Instantly share code, notes, and snippets.

@lgandecki
Created June 21, 2019 09:36
Show Gist options
  • Save lgandecki/0c7de77ca3b99a8ae9afaa814d2f1eca to your computer and use it in GitHub Desktop.
Save lgandecki/0c7de77ca3b99a8ae9afaa814d2f1eca to your computer and use it in GitHub Desktop.
exports.estimateShipping = ({price, weight}) => {
if (price > 1000) {
return 0
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment