MCPcopy Index your code
hub / github.com/witheve/Eve / spaceStr

Function spaceStr

src/codemirror.js:8327–8331  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

8325
8326 var spaceStrs = [""];
8327 function spaceStr(n) {
8328 while (spaceStrs.length <= n)
8329 spaceStrs.push(lst(spaceStrs) + " ");
8330 return spaceStrs[n];
8331 }
8332
8333 function lst(arr) { return arr[arr.length-1]; }
8334

Callers 3

indentLineFunction · 0.85
codemirror.jsFile · 0.85
buildTokenFunction · 0.85

Calls 1

lstFunction · 0.85

Tested by

no test coverage detected