Files
2025-11-30 08:35:03 +02:00

6 lines
90 B
JavaScript

export const imprecise = function ( float ) {
return parseFloat( float.toFixed(5) );
}