Nodejs Utililty Methods Event Modifier Check

List of utility methods to do Event Modifier Check

Description

The list of methods to do Event Modifier Check are organized into topic(s).

Method

modifiers()
Event.prototype.modifiers = function() {
  if (this.shiftKey || this.metaKey || this.altKey)
    return true;
  return false;
};