* wait I forgot to comit locally * cp the entire core directory and then rm the .git subdir
3 lines
168 B
TypeScript
3 lines
168 B
TypeScript
// THIS FILE CONTAINS USER DEFINED CODE THAT MAY BE OVERWRITTEN.
|
|
export function repeatString(str: string, multiplier: number): string {return str.repeat(multiplier);}
|