UNPKG

cpt-waffle-lotide

Version:
6 lines (4 loc) 116 B
const reverse = (string:string):string => { return string.split('').reverse().join(''); } export default reverse;