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
/
utils
/
is-dom-node.js
9 lines
(6 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
var
noop =
require
(
'../utils/noop.js'
)
var
DOMConstructor
= (
typeof
Node
===
'function'
) ?
Node
: noop;
module
.
exports
=
function
(
element
){
return
element
instanceof
DOMConstructor
}