This commit is contained in:
valentijn
2024-01-14 19:21:17 +01:00
parent dc2d652b23
commit 560dffcbf8
50 changed files with 681 additions and 9 deletions

9
node_modules/.bin/mime generated vendored
View File

@@ -1 +1,8 @@
../mime/cli.js
#!/usr/bin/env node
var mime = require('./mime.js');
var file = process.argv[2];
var type = mime.lookup(file);
process.stdout.write(type + '\n');