UNPKG

tyro-util

Version:
12 lines (10 loc) 239 B
/** * @description 反转一个字符串 * @param {String} str * @return {String} * * eg. * reverseString('foobar'); // 'raboof' */ const reverseString = str => [...str].reverse().join('') module.exports = reverseString