style: auto-format code

This commit is contained in:
Jean-Philippe Sirois
2019-09-14 19:54:25 -04:00
parent 79e19c974f
commit d933820454
7 changed files with 15 additions and 16 deletions
@@ -44,7 +44,9 @@ function generateFile({
}
function join([head, ...tail]: IFileOrFolder[]): IFileOrFolder[] {
if (!head) { return [] }
if (!head) {
return []
}
const [similarFs, remaining] = partition(
obj => obj.title === head.title && obj.type === head.type,