()
| 1840 | } |
| 1841 | |
| 1842 | function ensureAssetsDefaults() { |
| 1843 | if (!Array.isArray(assets)) assets = []; |
| 1844 | assets.forEach((a) => { |
| 1845 | if (!a) return; |
| 1846 | if (!a.id) a.id = "asset_" + Math.random().toString(36).slice(2, 10); |
| 1847 | if (!a.kind) a.kind = "image"; |
| 1848 | if (!a.name) a.name = a.sourceName || a.id; |
| 1849 | }); |
| 1850 | } |
| 1851 | |
| 1852 | |
| 1853 | function makeId() { |
no outgoing calls
no test coverage detected