Skip to content

Commit e824c60

Browse files
committed
style: fix indent
1 parent 4bd4e2c commit e824c60

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

test/utils/index.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ import posthtml from 'posthtml';
44
export const processing = (html, plugins = [], options = {}) => posthtml(plugins).process(html, options);
55

66
export const read = pathFile => new Promise((resolve, reject) => {
7-
readFile(pathFile, 'utf8', (err, data) => {
8-
if (err) {
9-
reject(err);
10-
}
11-
return resolve(data);
12-
});
7+
readFile(pathFile, 'utf8', (err, data) => {
8+
if (err) {
9+
reject(err);
10+
}
11+
12+
return resolve(data);
13+
});
1314
});

0 commit comments

Comments
 (0)