Skip to content

Instantly share code, notes, and snippets.

@Jahans3
Last active November 7, 2017 22:40
Show Gist options
  • Save Jahans3/b81e6fc558adf7db0477712fb25fbd50 to your computer and use it in GitHub Desktop.
Save Jahans3/b81e6fc558adf7db0477712fb25fbd50 to your computer and use it in GitHub Desktop.
const Ford = {
seats: 4,
passengers: { name: 'Bobby', height: 175 },
beep () {
console.log('Beep beep')
},
fuelType: 'diesel'
}
// Bad implementation - throws an error!
const FordCar = implement(Car)(Ford)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment