MCPcopy Create free account
hub / github.com/zxlie/FeHelper / indent

Function indent

apps/code-beautify/content-script.js:45–45  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

43 let singleIndent = Array(indentSize + 1).join(indentCharacter);
44 let indentLevel = 0;
45 let indent = () => { indentLevel++; indentString += singleIndent; };
46 let outdent = () => { indentLevel--; indentString = indentString.slice(0, -indentSize); };
47
48 let output = [];

Callers 1

cssBeautifyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected