Skip to content

Commit

Permalink
remove useless todos
Browse files Browse the repository at this point in the history
  • Loading branch information
userXinos committed Nov 14, 2023
1 parent 55eeafe commit 2a8311c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 14 deletions.
1 change: 0 additions & 1 deletion src/composables/calculator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ export default function calculator(stackChars: string[], initCalcTotal: InitCalc

return raw as OutputValue;

// TODO настройка для отключения этого поведения
function removeNotArrayChars(obj: {[key: string]: ObjAndVisible|object}) {
for (const key in obj) {
if (key in obj) {
Expand Down
2 changes: 1 addition & 1 deletion src/composables/calculatorConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class CalculatorConfig {
val.selected = val.configs.length - 1;


if (temporary) { // @TODO мб какая-нить логика на основе этого
if (temporary) { // мб какая-нить логика на основе этого
// val.configs[val.selected].temporary = true;
} else {
this.save();
Expand Down
12 changes: 0 additions & 12 deletions src/utils/tableMask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,6 @@ function bodyMask(category: string, keys: string[], srcBody: unknown[][], mergeC
}
}

// // TODO фикс багованая рень
// // сделать скрытие сложнее прямоугольника (2 точки) по типу буквы P (3 точки)

// if (!hideByC) {
// let c = elemIndex + 1;
// while (c < arr[rowIndex].length && value === arr[rowIndex][c]) {
// colZero.push(`${rowIndex}>${c}`);
// colspan++;
// c++;
// }
// }

return {
key: keys[elemIndex],
value,
Expand Down

0 comments on commit 2a8311c

Please sign in to comment.