const calculateDeterminant = async m => { const { det } = await import('https://esm.sh/mathjs') return det(m) } export default calculateDeterminant;