@oazmi/kitchensink - v0.9.13
    Preparing search index...

    Type Alias RepeatString<S, N>

    RepeatString: N extends 1 ? S : `${S}${RepeatString<S, DecrementNumber[N]>}`

    repeat a string S for up to N = 10 times

    Type Parameters

    • S extends string
    • N extends number