๐Ÿ“ฆ toeverything / file-type

๐Ÿ“„ simple-test.mjs ยท 8 lines
1
2
3
4
5
6
7
8import { readFile } from 'node:fs/promises'

import { FileType } from './index.js'

const ft = new FileType(await readFile('./__test__/sample.jpg'))

console.log(ft.mime())