MCPcopy Index your code
hub / github.com/stemdeckapp/stemdeck / _nextColor

Function _nextColor

static/js/sections.js:375–378  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

373// ─── Utilities ────────────────────────────────────────────
374
375function _nextColor() {
376 const used = new Set(_sections.map((s) => s.color));
377 return SECTION_COLORS.find((c) => !used.has(c)) ?? SECTION_COLORS[_sections.length % SECTION_COLORS.length];
378}
379
380function _nextId() {
381 return `s${Date.now().toString(36)}${Math.random().toString(36).slice(2, 6)}`;

Callers 1

_addSectionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected