UNPKG

@design-automation/mobius-inline-funcs

Version:
9 lines (8 loc) 255 B
/** * Returns a new list that repeats the contents of the input list n times. * * @param list The list. * @param n An integer. The number of repetitons. * @returns A new list. */ export declare function listRep(list: any, n: number): any[];