Skip to main content
Module

x/rambda/repeat.js

Faster and smaller alternative to Ramda
Go to Latest
File
export function repeat(x, timesToRepeat){ if (arguments.length === 1){ return _timesToRepeat => repeat(x, _timesToRepeat) }
return Array(timesToRepeat).fill(x)}