From e11c101600b290413b1977e55ecf95b675806206 Mon Sep 17 00:00:00 2001 From: Stephen Ward Date: Tue, 9 Oct 2018 20:28:46 -0400 Subject: [PATCH] forgot a semicolon --- src/filesystem/implementation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem/implementation.js b/src/filesystem/implementation.js index 4b44f18..c691d67 100644 --- a/src/filesystem/implementation.js +++ b/src/filesystem/implementation.js @@ -536,7 +536,7 @@ function remove_directory(context, path, callback) { function open_file(context, path, flags, mode, callback) { if (typeof mode === 'function'){ callback = mode; - mode = null + mode = null; } path = normalize(path); var name = basename(path);