Bakhtina Sofya b84cb877be 1st comm | há 2 semanas atrás | |
---|---|---|
.. | ||
node_modules | há 2 semanas atrás | |
index.js | há 2 semanas atrás | |
license | há 2 semanas atrás | |
package.json | há 2 semanas atrás | |
readme.md | há 2 semanas atrás |
Trim a consecutively repeated substring:
foo--bar---baz
→foo-bar-baz
$ npm install --save trim-repeated
var trimRepeated = require('trim-repeated');
trimRepeated('foo--bar---baz', '-');
//=> 'foo-bar-baz'
trimRepeated('foo@#@#baz', '@#');
//=> 'foo@#baz'
Required
Type: string
Required
Type: string
Substring to trim.
condense-whitespace
- Remove leading, trailing and repeated whitespace from a stringMIT © Sindre Sorhus