(string: string)
| 230 | } |
| 231 | |
| 232 | export function capitalizeFirstLetter(string: string): string { |
| 233 | return string.charAt(0).toUpperCase() + string.slice(1) |
| 234 | } |
| 235 | |
| 236 | export const genericOperatorMap: Record<string, string> = { |
| 237 | exact: '= equals', |
no outgoing calls
no test coverage detected
searching dependent graphs…