We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f06ec8 commit 5b01424Copy full SHA for 5b01424
1 file changed
src/lib/shared-args.ts
@@ -56,7 +56,9 @@ export function getSharedArgs(options: StillOptions | StreamOptions): string[] {
56
/**
57
* Brightness (0 to 100; default 50)
58
*/
59
- ...((options.brightness || options.brightness === 0) ? ['--brightness', options.brightness.toString()] : []),
+ ...(options.brightness || options.brightness === 0
60
+ ? ['--brightness', options.brightness.toString()]
61
+ : []),
62
63
64
* Saturation (-100 to 100; default 0)
0 commit comments