forgot a semicolon
This commit is contained in:
parent
7a6a4160e6
commit
e11c101600
|
@ -536,7 +536,7 @@ function remove_directory(context, path, callback) {
|
||||||
function open_file(context, path, flags, mode, callback) {
|
function open_file(context, path, flags, mode, callback) {
|
||||||
if (typeof mode === 'function'){
|
if (typeof mode === 'function'){
|
||||||
callback = mode;
|
callback = mode;
|
||||||
mode = null
|
mode = null;
|
||||||
}
|
}
|
||||||
path = normalize(path);
|
path = normalize(path);
|
||||||
var name = basename(path);
|
var name = basename(path);
|
||||||
|
|
Loading…
Reference in New Issue