Skip to content

Instantly share code, notes, and snippets.

@YozhEzhi
Last active January 24, 2017 19:14
Show Gist options
  • Save YozhEzhi/4801ac15dd87ecc904a4532cdb7ad178 to your computer and use it in GitHub Desktop.
Save YozhEzhi/4801ac15dd87ecc904a4532cdb7ad178 to your computer and use it in GitHub Desktop.
JS function decoration example
function checkPermissionDecorator(f) {
return function() {
if (isAdmin()) {
return f.apply(this, arguments);
}
alert( 'Недостаточно прав' );
}
}
function save() { ... }
save = checkPermissionDecorator(save);
// save() invocation now checks permission;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment