@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
9 lines • 300 B
TypeScript
/**
* Repeat a given piece of text a {@link count} times
* @example "ABC_" repeated 2 times results in "ABC_ABC_"
* @param {string} what
* @param {number} count
* @return {string}
*/
export function string_repeat(what: string, count: number): string;
//# sourceMappingURL=string_repeat.d.ts.map