0.0.6 • Published 8 years ago

reverse-string v0.0.6

Weekly downloads
87
License
MIT
Repository
github
Last release
8 years ago

reverse-string

Reverse a string (with Unicode support). 'foo' → 'oof'

Build Status NPM version

This module was inspired by Implementation #1 of Edd Mann's post: a high-performance algorithm for string reversal.

Install

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

Usage

var reverse = require('reverse-string');

reverse('test');
//=> 'tset'

API

reverseString(string)

Returns a reversed string.

string

Required Type: string

The string you want to reverse. Allows unicode and latin characters.

License

MIT @ Cédric JUNG