| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 3 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | export const reverseString = (stringToReverse) => { |
||
| 2 | return stringToReverse.split("").reverse().join(""); |
||
| 3 | }; |
||
| 4 |