(text: string)
| 610 | } |
| 611 | |
| 612 | export function capitaliseFirstLetter(text: string): string { |
| 613 | return text.replace(/(^\w|\s\w)/g, function (m: string) { |
| 614 | return m.toUpperCase(); |
| 615 | }); |
| 616 | } |
| 617 | |
| 618 | export function reformatFromFuse<Obj>( |
| 619 | data: { item: Obj; refIndex: number; score?: number }[], |
nothing calls this directly
no outgoing calls
no test coverage detected