UNPKG

@priyamaity9/arrayutils-package

Version:

Useful utility functions for working with arrays

6 lines (4 loc) 113 B
function reverseString(str) { return str.split("").reverse().join(""); } module.exports = reverseString;