Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 15, 2019 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/49c51263e7eb2adff51237124d566b13 to your computer and use it in GitHub Desktop.
Save jasongorman/49c51263e7eb2adff51237124d566b13 to your computer and use it in GitHub Desktop.
const {debit, credit} = require("./bank_account");
const transfer = (payer, payee, amount) => {
return {
payer: debit(payer, amount),
payee: credit(payee, amount),
amount: amount
};
}
module.exports = transfer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment