(property: string, isDefaultValue: boolean)
| 135 | const entryLabel = "entryLabel" in options ? options.entryLabel : null; |
| 136 | |
| 137 | function formatPropertyLabel(property: string, isDefaultValue: boolean): string { |
| 138 | const label = convertCamelCaseToTitleCase(stripIdSuffix(property)); |
| 139 | return isDefaultValue ? label : bold(label); |
| 140 | } |
| 141 | |
| 142 | function formatPropertyValue(entry: T, property: string): string { |
| 143 | // handle mentionable properties |
no test coverage detected