MCPcopy Create free account
hub / github.com/cli-table/cli-table3 / next

Function next

src/layout-manager.js:6–11  ·  view source on GitHub ↗
(alloc, col)

Source from the content-addressed store, hash-verified

4
5(function () {
6 function next(alloc, col) {
7 if (alloc[col] > 0) {
8 return next(alloc, col + 1);
9 }
10 return col;
11 }
12
13 function layoutTable(table) {
14 let alloc = {};

Callers 1

layoutTableFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…