Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

string-reverse-recursive

bradleyflood5ISC2.0.0

Returns string reversed using array splitting recursively.

string, reverse

readme

StringReverseRecursive - JavaScript

Installation

npm install string-reverse-recursive
`

Usage

const stringReverse = require('string-reverse-recursive');

const greet = 'Hello World';
const greetReversed = stringReverse(greet);

console.log(greetReversed); // dlroW olleH