carini
v1.0.3
Published
Remove any unwanted stuffs in string
Downloads
8
Maintainers
Readme
carini
Yeah thats what i do... clean the garbage
Install
$ npm install --save carini
Usage
const carini = require('carini');
const yourString1 = 'examle???string.@@!!';
const result = carini(yourString1, ['?','@','.','!']);
console.log(result);
//=> 'examlestring'
const yourString2 = '% % %t e s t$ $ $ ';
const result = carini(yourString2, ['%t',' ', '%', '$', 't']);
console.log(result);
//=> 'es'
API
carini(str, [options])
str
Type: string
String which need to be processed.
options
Type: array
Elements need to be removed.
License
MIT © haotian Chang