UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

11 lines (8 loc) 210 B
export function reverse(listOrString){ if (typeof listOrString === 'string'){ return listOrString.split('').reverse() .join('') } const clone = listOrString.slice() return clone.reverse() }