1.0.1 • Published 7 years ago

operations-string v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

operations-string

Operations string is a npm package to perform basic operations for string manipulations.

Installation

npm install operations-string

Usage

var opstr = require('operations-string');

Check whether a string is palindrome or not

var str="aba"; var ispal = opstr.palindrome(str);

Output

ispal == true if string is palindrome ispal == false if string is not palindrome