(item)
| 2184 | } |
| 2185 | |
| 2186 | function getArgumentDefaultValue(item) { |
| 2187 | const value = `${item?.value ?? ''}`.trim() |
| 2188 | return stripWrapQuote(splitTopLevel(value, ',')[0] || value).trim() |
| 2189 | } |
| 2190 | |
| 2191 | function collectUsedArgumentKeys(jsBox, hnBox = []) { |
| 2192 | const keys = new Set() |
no test coverage detected