source: trip-planner-front/node_modules/sockjs-client/lib/event/close.js@ eed0bf8

Last change on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 295 bytes
RevLine 
[6a3a178]1'use strict';
2
3var inherits = require('inherits')
4 , Event = require('./event')
5 ;
6
7function CloseEvent() {
8 Event.call(this);
9 this.initEvent('close', false, false);
10 this.wasClean = false;
11 this.code = 0;
12 this.reason = '';
13}
14
15inherits(CloseEvent, Event);
16
17module.exports = CloseEvent;
Note: See TracBrowser for help on using the repository browser.