24 lines
604 B
JavaScript
24 lines
604 B
JavaScript
/**---------------------
|
|
* @name tykayn Rangement
|
|
* @description Rangement sorts and rename files depending on their exif data
|
|
* @contact contact@cipherbliss.com
|
|
--------------------- */
|
|
/** ---------------------
|
|
libs
|
|
--------------------- */
|
|
import log from 'loglevel'
|
|
/** ---------------------
|
|
custom utilities and configuration
|
|
--------------------- */
|
|
import rangement_instance from './conf/configs.js'
|
|
import finder from './utils/finder.js'
|
|
|
|
let mini_arguments
|
|
|
|
log.setLevel(rangement_instance.log_level)
|
|
log.info(' ')
|
|
|
|
finder.parseArguments()
|
|
|
|
finder.guessFileNameOnAllFilesFromArguments()
|