Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/nodejs/node
/ padl
Function
padl
deps/v8/tools/wasm/wasm-import-profiler.js:56–60 ·
view source on GitHub ↗
(s, len)
Source
from the content-addressed store, hash-verified
54
}
55
56
function
padl(s, len) {
57
s = s.toString();
58
while
(s.length < len) s = s +
" "
;
59
return
s;
60
}
61
function
padr(s, len) {
62
s = s.toString();
63
while
(s.length < len) s =
" "
+ s;
Callers
1
dumpProfile
Function · 0.85
Calls
1
toString
Method · 0.45
Tested by
no test coverage detected