saveDecimal(item) { if (typeof item !== "string") { item = item.toString(); } return Number(item.replace(/^(\-)*(\d+)\.(\d\d).*$/, "$1$2.$3")); }