Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 092ad14

Browse files
committed
Revert IDBFS, NODEFS and syncfs modifications
1 parent 348ff58 commit 092ad14

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

javascript/post.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*
12
Module['syncfs'] = function(populate) {
23
return new Promise(function(resolve, reject) {
34
FS.syncfs(populate, function(err) {
@@ -9,3 +10,4 @@ Module['syncfs'] = function(populate) {
910
});
1011
});
1112
}
13+
*/

javascript/prepend.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ var logger = function(){}
33
Module['setLogger'] = function(_logger) { logger = _logger; };
44
Module['print'] = function(message) { logger(message, 'stdout'); };
55
Module['printErr'] = function(message) { logger(message, 'stderr'); };
6+
/*
67
Module['preRun'] = [
78
function() {
89
FS.mkdir('/data');
@@ -17,3 +18,4 @@ Module['preRun'] = [
1718
}
1819
},
1920
];
21+
*/

0 commit comments

Comments
 (0)