(data)
| 63 | } |
| 64 | |
| 65 | function stripUndefined(data) { |
| 66 | const cleaned = {}; |
| 67 | for (const [key, value] of Object.entries(data)) { |
| 68 | if (value !== undefined) { |
| 69 | cleaned[key] = value; |
| 70 | } |
| 71 | } |
| 72 | return cleaned; |
| 73 | } |
| 74 | |
| 75 | async function loadEntries() { |
| 76 | const results = []; |