Skip to content

Instantly share code, notes, and snippets.

@heymichaelp
Last active August 29, 2015 14:04
Show Gist options
  • Save heymichaelp/4bde0e0442041942db0e to your computer and use it in GitHub Desktop.
Save heymichaelp/4bde0e0442041942db0e to your computer and use it in GitHub Desktop.
Decorators: Example
var generateReportCardService = new GenerateReportCard()
var decoratedService = new EmailReportCardToParent(generateReportCardService)
// returned object is exact same object
decoratedService === generateReportCardService // true
@nvartolomei
Copy link

isn't there a typo? generateReportCard shouldn't be generateReportCardService?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment