reverse-repeatdeprecated

a reversed approach to the javascript's "repeat" method

Usage no npm install needed!

<script type="module">
  import reverseRepeat from 'https://cdn.skypack.dev/reverse-repeat';
</script>

README

reverse-repeat

Build status Test coverage NPM version NPM Downloads

A reversed approach to the javascript's repeat method.

Install

npm install reverse-repeat --save
yarn add reverse-repeat

Usage

const reverseRepeat = require('reverse-repeat');

'foobar'.repeat(3);
//=> 'foobarfoobarfoobar'

reverseRepeat('foobarfoobarfoobar').repeated;
//=> 'foobar'

reverseRepeat('foobarfoobarfoobar').count;
//=> 3

var chorus = 'Because I\'m happy. ';
chorus.repeat(3);
//=> 'Because I'm happy. Because I'm happy. Because I'm happy. '

reverseRepeat(chorus.repeat(3));
//=> { repeated: 'Because I\'m happy. ', count: 3 }



Credits

Developed by Umut Canbolat.

License

This project is licensed under the MIT License - see the LICENSE file for details