Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
292 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | var inherits = require('inherits')
|
---|
4 | , Event = require('./event')
|
---|
5 | ;
|
---|
6 |
|
---|
7 | function TransportMessageEvent(data) {
|
---|
8 | Event.call(this);
|
---|
9 | this.initEvent('message', false, false);
|
---|
10 | this.data = data;
|
---|
11 | }
|
---|
12 |
|
---|
13 | inherits(TransportMessageEvent, Event);
|
---|
14 |
|
---|
15 | module.exports = TransportMessageEvent;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.