11 lines
198 B
JavaScript
Executable file
11 lines
198 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
import convertBytesToHumanReadable from 'human-readable-bytes';
|
|
|
|
|
|
|
|
process.args.forEach( (val, index) => {
|
|
if( index == process.args.length - 1 ){
|
|
console.log( val );
|
|
}
|
|
});
|