Created
August 17, 2016 08:16
-
-
Save aishek/f269286fddacebd5204b7349cc28242d to your computer and use it in GitHub Desktop.
special_case.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sendPickUpEmailAsync(order) { | |
if (order.fromOffice()) return; | |
if (order.isLong()) { | |
sendPickUpEmailAsync(order) | |
} | |
else { | |
sendPickUpAndDropOffEmailAsync(order) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment