var ReverseString = function (string){ return string.split('').reverse().join(''); } ; module.exports = ReverseString;