krx-cli 1.3.0 → 1.3.1
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/SKILL.md +1 -1
- package/dist/mcp.js +4 -1
- package/dist/mcp.js.map +2 -2
- package/package.json +1 -1
package/SKILL.md
CHANGED
package/dist/mcp.js
CHANGED
|
@@ -30883,7 +30883,10 @@ function filterFields(data, fields) {
|
|
|
30883
30883
|
const filtered = {};
|
|
30884
30884
|
for (const key of Object.keys(row)) {
|
|
30885
30885
|
if (fieldSet.has(key)) {
|
|
30886
|
-
|
|
30886
|
+
const value = row[key];
|
|
30887
|
+
if (value !== void 0) {
|
|
30888
|
+
filtered[key] = value;
|
|
30889
|
+
}
|
|
30887
30890
|
}
|
|
30888
30891
|
}
|
|
30889
30892
|
return filtered;
|