carini

1.0.3 • Public • Published

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

Package Sidebar

Install

npm i carini

Weekly Downloads

0

Version

1.0.3

License

MIT

Last publish

Collaborators

  • cht8687