UNPKG
cross-channel
Version:
latest (0.6.2)
0.6.2
0.6.1
0.6.0
0.4.1
0.4.0
Cross window messaging
github.com/constgen/cross-channel
constgen/cross-channel
cross-channel
/
src
/
channel
/
transports
/
blank.transport.js
14 lines
(10 loc)
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
var
noop =
require
(
'../../utils/noop.js'
)
function
Transport
(
) {}
Transport
.
prototype
= {
constructor
:
Transport
,
send
: noop,
onMessageEvent
: noop,
close
: noop }
module
.
exports
=
Transport