static reverseString()

in index.js [53:55]


	static reverseString(str) {
		return str.split('').reverse().join('');
	}