MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / spaceStr

Function spaceStr

lib/web/CodeMirror/src/util/misc.js:90–94  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

88
89let spaceStrs = [""]
90export function spaceStr(n) {
91 while (spaceStrs.length <= n)
92 spaceStrs.push(lst(spaceStrs) + " ")
93 return spaceStrs[n]
94}
95
96export function lst(arr) { return arr[arr.length-1] }
97

Callers 3

indentLineFunction · 0.90
buildTokenFunction · 0.90
commands.jsFile · 0.90

Calls 2

lstFunction · 0.70
pushMethod · 0.45

Tested by

no test coverage detected