diff options
Diffstat (limited to 'src/gen-thumbs.js')
-rw-r--r-- | src/gen-thumbs.js | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/gen-thumbs.js b/src/gen-thumbs.js index 9151201f..dc1f6fb4 100644 --- a/src/gen-thumbs.js +++ b/src/gen-thumbs.js @@ -1,5 +1,4 @@ #!/usr/bin/env node -/** @format */ // Ok, so the d8te is 3 March 2021, and the music wiki was initially released // on 15 November 2019. That is 474 days or 11376 hours. In my opinion, and @@ -98,10 +97,10 @@ import {commandExists, isMain, promisifyProcess} from './util/node-utils.js'; import {delay, queue} from './util/sugar.js'; -function traverse( - startDirPath, - {filterFile = () => true, filterDir = () => true} = {} -) { +function traverse(startDirPath, { + filterFile = () => true, + filterDir = () => true +} = {}) { const recursive = (names, subDirPath) => Promise.all( names.map((name) => @@ -197,10 +196,10 @@ function generateImageThumbnails(filePath, {spawnConvert}) { ]); } -export default async function genThumbs( - mediaPath, - {queueSize = 0, quiet = false} = {} -) { +export default async function genThumbs(mediaPath, { + queueSize = 0, + quiet = false, +} = {}) { if (!mediaPath) { throw new Error('Expected mediaPath to be passed'); } |