UNPKG
@montferret/ferret-wasm
Version:
alpha (2.0.0-alpha.30)
latest (1.0.0)
2.0.0-alpha.30
1.0.0
0.7.3
0.7.2
0.7.1
0.7.0
Ferret compiler and runtime ported to WASM
github.com/MontFerret/ferret-wasm
MontFerret/ferret-wasm
@montferret/ferret-wasm
/
dist
/
is-node.js
7 lines
(6 loc)
•
209 B
JavaScript
View Raw
1
2
3
4
5
6
7
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
isNodeJS = !!(
typeof
process !==
'undefined'
&& process.
versions
&& process.
versions
.
node
);
exports
.
default
= isNodeJS;