@@ -12,6 +12,7 @@ const regSVGFile = /\.svg$/i;
12
12
13
13
/**
14
14
* Synchronously check if path is a directory. Tolerant to errors like ENOENT.
15
+ *
15
16
* @param {string } path
16
17
*/
17
18
function checkIsDir ( path ) {
@@ -276,6 +277,7 @@ async function action(args, opts, command) {
276
277
277
278
/**
278
279
* Optimize SVG files in a directory.
280
+ *
279
281
* @param {Object } config options
280
282
* @param {string } dir input directory
281
283
* @param {string } output output directory
@@ -292,6 +294,7 @@ function optimizeFolder(config, dir, output) {
292
294
293
295
/**
294
296
* Process given files, take only SVG.
297
+ *
295
298
* @param {Object } config options
296
299
* @param {string } dir input directory
297
300
* @param {Array } files list of file names in the directory
@@ -318,7 +321,8 @@ function processDirectory(config, dir, files, output) {
318
321
}
319
322
320
323
/**
321
- * Get svg files descriptions
324
+ * Get SVG files descriptions.
325
+ *
322
326
* @param {Object } config options
323
327
* @param {string } dir input directory
324
328
* @param {Array } files list of file names in the directory
@@ -360,6 +364,7 @@ function getFilesDescriptions(config, dir, files, output) {
360
364
361
365
/**
362
366
* Read SVG file and pass to processing.
367
+ *
363
368
* @param {Object } config options
364
369
* @param {string } file
365
370
* @param {string } output
@@ -375,6 +380,7 @@ function optimizeFile(config, file, output) {
375
380
376
381
/**
377
382
* Optimize SVG data.
383
+ *
378
384
* @param {Object } config options
379
385
* @param {string } data SVG content to optimize
380
386
* @param {string } output where to write optimized file
@@ -425,6 +431,7 @@ function processSVGData(config, info, data, output, input) {
425
431
426
432
/**
427
433
* Write result of an optimization.
434
+ *
428
435
* @param {string } input
429
436
* @param {string } output output file name. '-' for stdout
430
437
* @param {string } data data to write
@@ -444,34 +451,37 @@ function writeOutput(input, output, data) {
444
451
}
445
452
446
453
/**
447
- * Write a time taken by optimization.
454
+ * Write time taken to optimize.
455
+ *
448
456
* @param {number } time time in milliseconds.
449
457
*/
450
458
function printTimeInfo ( time ) {
451
459
console . log ( `Done in ${ time } ms!` ) ;
452
460
}
453
461
454
462
/**
455
- * Write optimizing information in human readable format.
463
+ * Write optimizing stats in a human-readable format.
464
+ *
456
465
* @param {number } inBytes size before optimization.
457
466
* @param {number } outBytes size after optimization.
458
467
*/
459
468
function printProfitInfo ( inBytes , outBytes ) {
460
- var profitPercents = 100 - ( outBytes * 100 ) / inBytes ;
469
+ const profitPercent = 100 - ( outBytes * 100 ) / inBytes ;
470
+ /** @type {[string, Function] } */
471
+ const ui = profitPercent < 0 ? [ '+' , colors . red ] : [ '-' , colors . green ] ;
461
472
462
473
console . log (
463
- Math . round ( ( inBytes / 1024 ) * 1000 ) / 1000 +
464
- ' KiB' +
465
- ( profitPercents < 0 ? ' + ' : ' - ' ) +
466
- colors . green ( Math . abs ( Math . round ( profitPercents * 10 ) / 10 ) + '%' ) +
467
- ' = ' +
468
- Math . round ( ( outBytes / 1024 ) * 1000 ) / 1000 +
469
- ' KiB'
474
+ Math . round ( ( inBytes / 1024 ) * 1000 ) / 1000 + ' KiB' ,
475
+ ui [ 0 ] ,
476
+ ui [ 1 ] ( Math . abs ( Math . round ( profitPercent * 10 ) / 10 ) + '%' ) ,
477
+ '=' ,
478
+ Math . round ( ( outBytes / 1024 ) * 1000 ) / 1000 + ' KiB'
470
479
) ;
471
480
}
472
481
473
482
/**
474
483
* Check for errors, if it's a dir optimize the dir.
484
+ *
475
485
* @param {Object } config
476
486
* @param {string } input
477
487
* @param {string } output
@@ -491,6 +501,7 @@ function checkOptimizeFileError(config, input, output, error) {
491
501
492
502
/**
493
503
* Check for saving file error. If the output is a dir, then write file there.
504
+ *
494
505
* @param {string } input
495
506
* @param {string } output
496
507
* @param {string } data
@@ -509,9 +520,7 @@ function checkWriteFileError(input, output, data, error) {
509
520
}
510
521
}
511
522
512
- /**
513
- * Show list of available plugins with short description.
514
- */
523
+ /** Show list of available plugins with short description. */
515
524
function showAvailablePlugins ( ) {
516
525
const list = builtin
517
526
. sort ( ( a , b ) => a . name . localeCompare ( b . name ) )
0 commit comments