MCPcopy
hub / github.com/marimo-team/marimo / String

Interface String

packages/ts-config/ts-reset.d.ts:16–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16interface String {
17 /**
18 * Split a string into substrings using the specified separator and return them as an array.
19 * @param splitter An object that can split a string.
20 * @param limit A value used to limit the number of elements returned in the array.
21 */
22 split<T extends string | undefined = string | undefined>(
23 splitter: { [Symbol.split](string: string, limit?: number): string[] },
24 limit?: number,
25 ): T[];
26 split<T extends string | undefined = string | undefined>(
27 splitter: string,
28 limit?: number,
29 ): T[];
30}

Callers 15

getFunction · 0.85
handleToolCallFunction · 0.85
getAbsoluteFilenameFunction · 0.85
createOrResumeSessionFunction · 0.85
StorageEntryRowFunction · 0.85
StorageInspectorFunction · 0.85
StorageFileViewerFunction · 0.85
renderAnyFunction · 0.85
renderCellValueFunction · 0.85
resolveDownloadUrlFunction · 0.85
sentinel-cell.tsxFile · 0.85
getStableRowIdFunction · 0.85

Implementers 1

CollapsibleTreefrontend/src/utils/id-tree.tsx

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…