MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / repeatChar

Function repeatChar

hooks/move-files.js:15–19  ·  view source on GitHub ↗
(char, times)

Source from the content-addressed store, hash-verified

13);
14
15const repeatChar = (char, times) => {
16 let res = '';
17 while (--times >= 0) res += char;
18 return res;
19};
20
21let msg;
22if (!fs.existsSync(newBuildFilePath) && fs.existsSync(buildFilePath)) {

Callers 1

move-files.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected