(x: string)
| 275 | * @returns |
| 276 | */ |
| 277 | export const reverseString = (x: string) => { |
| 278 | return [...x].reverse().join(""); |
| 279 | }; |
| 280 | |
| 281 | export interface SplitRange { |
| 282 | partNum: number; // startting from 1 |
no outgoing calls
no test coverage detected