MCPcopy Index your code
hub / github.com/tinyplex/tinybase / strSplit

Function strSplit

src/common/strings.ts:116–120  ·  view source on GitHub ↗
(
  str: string,
  separator: string | RegExp = EMPTY_STRING,
  limit?: number,
)

Source from the content-addressed store, hash-verified

114 str?.match(regex);
115
116export const strSplit = (
117 str: string,
118 separator: string | RegExp = EMPTY_STRING,
119 limit?: number,
120): string[] => str.split(separator, limit);
121
122export const strReplace = (
123 str: string,

Callers 4

RelationshipInHtmlRowFunction · 0.90
escapeIdFunction · 0.90
codec.tsFile · 0.90
RelationshipInHtmlRowFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…