ide-assi 0.630.0 → 0.632.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bundle.cjs.js
CHANGED
|
@@ -203662,7 +203662,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
203662
203662
|
|
|
203663
203663
|
// item이 해당 속성을 가지고 있고, 그 속성의 값이 존재하는지 확인
|
|
203664
203664
|
if (item.hasOwnProperty(type) && item[type][pathKey]) {
|
|
203665
|
-
const arr = item[pathKey].split("/");
|
|
203665
|
+
const arr = item[type][pathKey].split("/");
|
|
203666
203666
|
console.log(arr);
|
|
203667
203667
|
// 배열이 비어있지 않은지 확인하고 마지막 요소 반환
|
|
203668
203668
|
if (arr.length > 0) {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -203658,7 +203658,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
203658
203658
|
|
|
203659
203659
|
// item이 해당 속성을 가지고 있고, 그 속성의 값이 존재하는지 확인
|
|
203660
203660
|
if (item.hasOwnProperty(type) && item[type][pathKey]) {
|
|
203661
|
-
const arr = item[pathKey].split("/");
|
|
203661
|
+
const arr = item[type][pathKey].split("/");
|
|
203662
203662
|
console.log(arr);
|
|
203663
203663
|
// 배열이 비어있지 않은지 확인하고 마지막 요소 반환
|
|
203664
203664
|
if (arr.length > 0) {
|
|
@@ -106,7 +106,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
106
106
|
|
|
107
107
|
// item이 해당 속성을 가지고 있고, 그 속성의 값이 존재하는지 확인
|
|
108
108
|
if (item.hasOwnProperty(type) && item[type][pathKey]) {
|
|
109
|
-
const arr = item[pathKey].split("/");
|
|
109
|
+
const arr = item[type][pathKey].split("/");
|
|
110
110
|
console.log(arr);
|
|
111
111
|
// 배열이 비어있지 않은지 확인하고 마지막 요소 반환
|
|
112
112
|
if (arr.length > 0) {
|
package/package.json
CHANGED
|
@@ -106,7 +106,7 @@ class IdeDiffPopup extends HTMLElement
|
|
|
106
106
|
|
|
107
107
|
// item이 해당 속성을 가지고 있고, 그 속성의 값이 존재하는지 확인
|
|
108
108
|
if (item.hasOwnProperty(type) && item[type][pathKey]) {
|
|
109
|
-
const arr = item[pathKey].split("/");
|
|
109
|
+
const arr = item[type][pathKey].split("/");
|
|
110
110
|
console.log(arr);
|
|
111
111
|
// 배열이 비어있지 않은지 확인하고 마지막 요소 반환
|
|
112
112
|
if (arr.length > 0) {
|