1.0.3 • Published 4 years ago
repeat-text v1.0.3
repeat-text
Repeat the given string n times. Build with nan.
Install
# With npm
npm i repeat-text
How to use
const stringRepeat = require('repeat-text');
stringRepeat('pizza', 3) // ~> 'pizzapizzapizza'
stringRepeat('hey', 2) // ~> 'heyhey'