MCPcopy Create free account
hub / github.com/nodejs/node / padr

Function padr

deps/v8/tools/wasm/wasm-import-profiler.js:61–65  ·  view source on GitHub ↗
(s, len)

Source from the content-addressed store, hash-verified

59 return s;
60 }
61 function padr(s, len) {
62 s = s.toString();
63 while (s.length < len) s = " " + s;
64 return s;
65 }
66 function padp(s, len) {
67 s = s.toString();
68 var i = s.indexOf(".");

Callers 1

dumpProfileFunction · 0.85

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected