MCPcopy
hub / github.com/skygragon/leetcode-cli / padLeft

Function padLeft

lib/sprintf.js:9–12  ·  view source on GitHub ↗
(s, n, c)

Source from the content-addressed store, hash-verified

7}
8
9function padLeft(s, n, c) {
10 let k = Math.max(0, n - len(s));
11 return c.repeat(k) + s;
12}
13
14function padRight(s, n , c) {
15 let k = Math.max(0, n - len(s));

Callers 1

tsprintfFunction · 0.85

Calls 1

lenFunction · 0.85

Tested by

no test coverage detected