feat(wip): 세력 장수 작업 중

This commit is contained in:
2022-04-07 03:03:38 +09:00
parent 9eaaa0da07
commit 73c3cc4983
5 changed files with 77 additions and 32 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ export function merge2DArrToObjectArr<T extends Record<string, unknown>>(column:
for(const rawItem of list){
const item: Record<string, unknown> = {};
if(column.length != item.length){
if(column.length != rawItem.length){
throw `column과 item의 길이가 같지 않습니다: ${column.length} != ${list.length}, ${JSON.stringify(item)}`;
}