Skip to content

Instantly share code, notes, and snippets.

@kulakowka
Created August 19, 2015 13:11
Show Gist options
  • Save kulakowka/3c95b202e0fa86872cb2 to your computer and use it in GitHub Desktop.
Save kulakowka/3c95b202e0fa86872cb2 to your computer and use it in GitHub Desktop.
function checkPermission(func) {
return function() {
if (isAdmin()) return func.apply(this, arguments);
console.log('Нет прав');
};
}
function isAdmin() {
return false;
}
function save() {
console.log('saved');
}
var save = checkPermission(save);
save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment