twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

cli.js (149B)


      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