List of utility methods to do Event Modifier Check
Event.prototype.modifiers = function() { if (this.shiftKey || this.metaKey || this.altKey) return true; return false; };