Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617
  1. 'use strict';
  2. var inherits = require('inherits')
  3. , Event = require('./event')
  4. ;
  5. function CloseEvent() {
  6. Event.call(this);
  7. this.initEvent('close', false, false);
  8. this.wasClean = false;
  9. this.code = 0;
  10. this.reason = '';
  11. }
  12. inherits(CloseEvent, Event);
  13. module.exports = CloseEvent;