mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
#!/usr/bin/env node
|
|
|
|
var mime = require('./mime.js');
|
|
var file = process.argv[2];
|
|
var type = mime.lookup(file);
|
|
|
|
process.stdout.write(type + '\n');
|
|
|