Sign in
chromium
/
devtools
/
devtools-frontend
/
643cd05092a4fcfe23fd34c0e83ec53865df4058
/
.
/
node_modules
/
rambda
/
src
/
reverse.js
blob: 294714e6246b143175e6f2e6429d34a03d3e0527 [
file
]
export
function
reverse
(
listOrString
){
if
(
typeof
listOrString
===
'string'
){
return
listOrString
.
split
(
''
).
reverse
()
.
join
(
''
)
}
const
clone
=
listOrString
.
slice
()
return
clone
.
reverse
()
}