parent
b346ad34b4
commit
c2682a0c22
4 changed files with 57 additions and 46 deletions
@ -0,0 +1,11 @@ |
|||||||
|
#!/usr/bin/env node |
||||||
|
|
||||||
|
import convertBytesToHumanReadable from 'human-readable-bytes'; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
process.args.forEach( (val, index) => { |
||||||
|
if( index == process.args.length - 1 ){ |
||||||
|
console.log( val ); |
||||||
|
} |
||||||
|
}); |
Loading…
Reference in new issue