module.exports = reverseString = str => [...str].reverse().join('');