Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

[DEPRECATED]: This module has been renamed to unrepeat. Please use it instead.

License

Notifications You must be signed in to change notification settings

umutcanbolat/reverse-repeat

Repository files navigation

DEPRECATED REPO: This module has been renamed to unrepeat. Please use it instead. https://github.com/umutcanbolat/unrepeat

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