Sign in
chromium
/
external
/
github.com
/
emscripten-core
/
emscripten
/
6e514cf37617cd7cd651796f0e129ff757dbf4e3
/
.
/
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'
);
};