Skip to content

nizaroni/combo-breaker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

combo-breaker

Break consecutive repetition of a string in Node.js and browsers.

Examples

var comboBreaker = require('combo-breaker'),
    redundant,
    broken
;

redundant = 'I really really really really love pizza.';

broken = comboBreaker(redundant, 'really ');
console.log(broken); // "I really love pizza."

broken = comboBreaker(redundant, 'really ', { keep: 2 });
console.log(broken); // "I really really love pizza."

API

comboBreaker(str, combo[, options])

Searches string str for consecutive repetitions of combo and returns a copy of str with the repetitions replaced by a single combo. Use options.keep (integer) to keep more than one (or no) combo.

Install

Install with npm:

npm install combo-breaker

License

ISC

About

Break consecutive repetition of a string in Node.js and browsers.

Resources

License

Stars

Watchers

Forks

Packages

No packages published