1export async function getFormat(url, context, defaultGetFormat) { 2 try { 3 if (new URL(url).pathname.endsWith('.unknown')) { 4 return { 5 format: 'module' 6 }; 7 } 8 } catch {} 9 return defaultGetFormat(url, context, defaultGetFormat); 10} 11