ai-tube / src /lib /utils /parseAssetToCheckIfGaussian.ts
jbilcke's picture
working to improve the clap format
f42b4a1
raw
history blame
No virus
269 Bytes
export function parseAssetToCheckIfGaussian(url: string) {
let ext = url.toLowerCase().split(".").pop() || ""
ext = ext.split("?").shift() || ""
if (ext === "splatv" || ext === "splat" || ext === "gsplat" || ext === "ply") {
return true
}
return false
}