Skip to content

Instantly share code, notes, and snippets.

@keyserfaty
Created January 20, 2016 11:40
Show Gist options
  • Save keyserfaty/08330f3b478f30dad364 to your computer and use it in GitHub Desktop.
Save keyserfaty/08330f3b478f30dad364 to your computer and use it in GitHub Desktop.
What I learned from my Angular + Webpack + ES6 journey: examples
export default class Thing {
constructor ($q) {
this.$q = $q;
}
doStuff (a, b) {
let { $q } = this;
return a + b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment