const toFixed = (value: number, precision: number = 3) => {
	return Number(value.toFixed(precision));
};

export default toFixed;
