This commit is contained in:
syuilo
2018-10-31 11:20:54 +09:00
parent 5e3372e932
commit 26c9d8ff6f
6 changed files with 8 additions and 8 deletions

View File

@ -79,7 +79,7 @@ export const packMany = async (
detail: boolean
}
) => {
return (await Promise.all(files.map(f => pack(f, options)))).filter(x => x != null);
return (await Promise.all(files.map(f => pack(f, options))));
};
/**