xplora
Version:
Xplora is a command-line tool to visualize files & directories on your file system and output them into a hierarchical tree. Xplora also comes with many other great features.
27 lines (22 loc) • 406 B
JavaScript
/**
* @fileoverview application state
* @author Priyanshu raj
*/
;
/**
* Application wise state.
* @global
*/
const appState = {
totalFiles: 0,
totalDir: 0,
totalSize: 0,
startDir: process.cwd(),
option: null,
endTime: null,
startTime: null,
ignoreDirs: new Set(),
ignoreAll: new Set(),
totalLinesOfCode: 0,
};
module.exports = appState;