fix: APIPathGen 호출 시 중간 경로 캐싱시 버그 수정
This commit is contained in:
@@ -12,8 +12,7 @@ export function APIPathGen(obj, callback, path) {
|
|||||||
nextPath = [key];
|
nextPath = [key];
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
nextPath = path;
|
nextPath = [...path, key];
|
||||||
nextPath.push(key);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(key in target)) {
|
if (!(key in target)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user