Skip to content

Instantly share code, notes, and snippets.

@kyuwoo-choi
Created June 14, 2017 16:20
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/3f3b961eb2df817e64b9a3ecd8ea57da to your computer and use it in GitHub Desktop.
Save kyuwoo-choi/3f3b961eb2df817e64b9a3ecd8ea57da to your computer and use it in GitHub Desktop.
hello world AOP no need?
let originalFunction = Collection.prototype.getNameByISBN;
Collection.prototype.getNameByISBN = function () {
let result = originalFunction.apply(this, arguments);
Logger.info(`Retrieving ${result.isbn} - ${result.name} has been succeed`);
return result;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment