mirror of
https://github.com/softprops/action-gh-release.git
synced 2026-05-28 12:49:49 +08:00
11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
|
|
#!/usr/bin/env node
|
||
|
|
|
||
|
|
'use strict';
|
||
|
|
|
||
|
|
var mime = require('.');
|
||
|
|
var file = process.argv[2];
|
||
|
|
var type = mime.getType(file);
|
||
|
|
|
||
|
|
process.stdout.write(type + '\n');
|
||
|
|
|