Skip to content

Instantly share code, notes, and snippets.

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