export const isFloat = (n: any) => {
  return typeof n === 'number' && n % 1 !== 0
}
