Skip to content

Instantly share code, notes, and snippets.

@kyuwoo-choi
Last active June 14, 2017 16:08
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 kyuwoo-choi/f1a0054488a81c5871b0ca0b2a6307b2 to your computer and use it in GitHub Desktop.
Save kyuwoo-choi/f1a0054488a81c5871b0ca0b2a6307b2 to your computer and use it in GitHub Desktop.
hello world AOP example
class BookCollection {
...
getByISBN(isbn) {
return this.get({
isbn: isbn
}).then(book => book.name)
.catch(error => null);
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment