chore(files) throw() -> throw

This commit is contained in:
coderaiser 2019-01-04 14:44:25 +02:00
parent 455f4e77e0
commit 0ca918d814

View file

@ -94,7 +94,7 @@ function showError(name) {
const str = 'Wrong file name: ' + name;
const error = new Error(str);
throw(error);
throw error;
}
function getSystemFile(file, callback) {