Reverse a string (with Unicode support) 'foo' → 'oof'
npm install reverse-string> Reverse a string (with Unicode support). 'foo' → 'oof'


This module was inspired by Implementation #1 of Edd Mann's post:
a high-performance algorithm for string reversal.
You can use this module in node or in the browser.
For use via Node.js:
```
npm install --save reverse-string
For use via Bower:
``
bower install reverse-string
`js
var reverse = require('reverse-string');
reverse('test');
//=> 'tset'
`
Returns a reversed string.
#### string
Required
Type: string`
The string you want to reverse. Allows unicode and latin characters.
MIT @ Cédric JUNG