Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 15, 2019 09:02
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/86704c824ed9fcad4cb729a3c7034acd to your computer and use it in GitHub Desktop.
Save jasongorman/86704c824ed9fcad4cb729a3c7034acd to your computer and use it in GitHub Desktop.
const base = require("./video_library");
const borrow_rated = (customer, video) => {
if(customer.age < video.rating.minAge){
throw "Customer is too young for this title";
}
return base(customer, video);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment