Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
15
const
repeatChar = (char, times) => {
16
let
res =
''
;
17
while
(--times >= 0) res += char;
18
return
res;
19
};
20
21
let
msg;
22
if
(!fs.existsSync(newBuildFilePath) && fs.existsSync(buildFilePath)) {
Callers
1
move-files.js
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected