- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 - 15
 - 16
 - 17
 - 18
 - 19
 
/**
 * Checks if a setting is enabled
 *
 * @api public
 */
Manager.prototype.enabled = function (key) {
  return !!this.settings[key];
};
/**
 * Checks if a setting is disabled
 *
 * @api public
 */
Manager.prototype.disabled = function (key) {
  return !this.settings[key];
};
                                
 Follow us!
Комментарии (3) RSS
Добавить комментарий