Blame view

node_modules/mime/cli.js 149 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
8
  #!/usr/bin/env node
  
  var mime = require('./mime.js');
  var file = process.argv[2];
  var type = mime.lookup(file);
  
  process.stdout.write(type + '
  ');