Sign in
chromium
/
external
/
github.com
/
emscripten-core
/
emscripten
/
53a96bfa34187bb2f90fd85d1a7d209a2d87a382
/
.
/
test
/
setup_nodefs.js
blob: 5d1c38dd7898c8951103bb5fe48ba756343c50fa [
file
]
Module
[
'onRuntimeInitialized'
]
=
()
=>
{
out
(
'mounting node filesystem under /nodefs'
);
FS
.
mkdir
(
'/nodefs'
);
FS
.
mount
(
NODEFS
,
{
root
:
'.'
},
'/nodefs'
);
FS
.
chdir
(
'/nodefs'
);
};