UNPKG

stdnum

Version:
4 lines (3 loc) 92 B
export function reverse(str: string): string { return str.split('').reverse().join(''); }