/**
* Returns the fractional part of a number
* @param {number} f The number to get the fractional part of
* @returns {number} The fractional part of the number
*/
export const fract = (f) => f % 1;
/**
* Returns the fractional part of a number
* @param {number} f The number to get the fractional part of
* @returns {number} The fractional part of the number
*/
export const fract = (f) => f % 1;