Skip to content

Commit 1945241

Browse files
committed
lint fixes
1 parent a737b79 commit 1945241

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bin/cleaver

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ var Cleaver = require('../');
1313
function createAndSave(files, options) {
1414
files.forEach(function (file) {
1515
fs.readFile(file, 'utf-8', function (err, contents) {
16-
if (err) throw err;
16+
if (err) {
17+
throw err;
18+
}
19+
1720
var presentation = new Cleaver(contents, options, path.resolve(path.dirname(file)));
1821

1922
presentation.run()

0 commit comments

Comments
 (0)