Detects the file format based on the URI's file extension.
The URI string to analyze for format detection
A string representing the detected format name, or 'Unknown' if no supported format is detected
const format = detectFormatByUri('path/to/model.gltf');console.log(format); // 'glTF' Copy
const format = detectFormatByUri('path/to/model.gltf');console.log(format); // 'glTF'
Detects the file format based on the URI's file extension.