static reverseString()
in
index.js [53:55]
3
lines of code
1
McCabe index (conditional complexity)
static reverseString(str) { return str.split('').reverse().join(''); }