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