1.0.3 • Published 8 years ago

carini v1.0.3

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

carini Build Status

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