File "cli.js"

Full Path: C:/wamp64/www/INTERPRETE2/backend/node_modules/mime/cli.js
File size: 149 bytes
MIME-type: text/plain
Charset: utf-8

#!/usr/bin/env node

var mime = require('./mime.js');
var file = process.argv[2];
var type = mime.lookup(file);

process.stdout.write(type + '\n');