Skip to content

repeat

repeat a string n times

ParametertypeDescription
strstringthe string to repeat
nnumberthe number of times to repeat
Returnsstringthe repeated string
ts
import { repeat } from 'func-dash'
repeat('a', 3) // 'aaa'