25
loading...
This website collects cookies to deliver better user experience
function reverse(string) {
return string
.toLowerCase()
.split("")
.reverse()
.join("");
};
module.exports = reverse;
npm login.
npm publish
npm publish --access=public.