Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Fibi66/FeiControl
/ isImageFile
Function
isImageFile
src/components/FilePreview.tsx:45–47 ·
view source on GitHub ↗
(ext: string)
Source
from the content-addressed store, hash-verified
43
}
44
45
function isImageFile(ext: string): boolean {
46
return [
"png"
,
"jpg"
,
"jpeg"
,
"gif"
,
"webp"
,
"svg"
,
"ico"
].includes(ext);
47
}
48
49
function isMarkdown(ext: string): boolean {
50
return ext ===
"md"
|| ext ===
"mdx"
;
Callers
1
FilePreview
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected