MCPcopy Index your code
hub / github.com/pywebio/PyWebIO / path2field

Function path2field

webiojs/src/models/datatable.ts:21–27  ·  view source on GitHub ↗
(path: string[])

Source from the content-addressed store, hash-verified

19</div>`
20
21function path2field(path: string[]) {
22 return [
23 path.join(''),
24 path.map((p) => p.length).join('_'),
25 path.length
26 ].join('_');
27}
28
29function field2path(field: string) {
30 let parts = field.split('_');

Callers 4

gen_columns_defFunction · 0.85
row_data_and_column_defFunction · 0.85
datatable.tsFile · 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…