Remove some log

pull/1/head
I Made Setia Baruna 2021-01-09 00:34:54 +08:00
parent 41774eaa3d
commit a5f6e54419
5 changed files with 0 additions and 11 deletions

View File

@ -29,7 +29,6 @@
}
function select(val) {
console.log('select', val);
selected = val;
focused = false;
hoveredIndex = -1;

View File

@ -17,7 +17,6 @@
let amount = 1;
function select(index, item) {
console.log(index, item);
selected = index;
selectedItem = item;
}

View File

@ -187,8 +187,6 @@
const current = Math.max(currentAscension, 0);
const target = intendedAscension;
console.log(selectedCharacter.ascension);
const result = selectedCharacter.ascension.slice(current, target).reduce(
(sum, character, index) => {
if (character.mora === 0) {
@ -225,8 +223,6 @@
moraNeeded = moraNeeded + result.mora;
ascensionResouce = result.items;
console.log(ascensionResouce);
}
function calculateTalent() {
@ -267,8 +263,6 @@
});
moraNeeded = moraNeeded + talentMaterial.mora;
console.log(talentMaterial);
}
function calculate() {

View File

@ -133,8 +133,6 @@ import { addTodo } from '../stores/todo';
}
}
}
console.log(allItems);
}
parseData();

View File

@ -28,6 +28,5 @@ export const getCurrentDay = () => {
day = 6;
}
console.log(weekdays[day], weekdays[time.day()], time.format());
return weekdays[day];
};