projects
/
VSoRC
/
.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Hamburguer menu, actualizacion
[VSoRC/.git]
/
node_modules
/
mime
/
cli.js
1
#!/usr/bin/env node
2
3
var mime = require('./mime.js');
4
var file = process.argv[2];
5
var type = mime.lookup(file);
6
7
process.stdout.write(type + '\n');
8