Appearance
String.repeat(target, amount)
Repeats target string amount times.
target
amount
import { String } from "@monstermann/string"; String.repeat("hello", 3); // "hellohellohello"
import { String } from "@monstermann/string"; pipe("hello", String.repeat(3)); // "hellohellohello"