source: node_modules/mime/cli.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 149 bytes
RevLine 
[d24f17c]1#!/usr/bin/env node
2
3var mime = require('./mime.js');
4var file = process.argv[2];
5var type = mime.lookup(file);
6
7process.stdout.write(type + '\n');
8
Note: See TracBrowser for help on using the repository browser.