UNPKG
mime-controller
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Helps you find the file type easily.
mime-controller
/
test.ts
10 lines
(7 loc)
•
216 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{findMime}
from
'./index'
;
import
{readFileSync}
from
'fs'
;
var
test =
readFileSync
(
'/home/lim10/İndirilenler/success_bell-6776.mp3'
)
async
function
main
(
) {
console
.
log
(
await
findMime
(test)) }
main
();