import Fraction from "fraction.js"; export const half = new Fraction(1,2) export const quarter = new Fraction(1,4) export const eighth = new Fraction(1,8) export const third = new Fraction(1,3) export const twoThird = new Fraction(2,3) export const sixth = new Fraction(1,6) export const nothing = new Fraction(0) export const unknown = new Fraction(-1)