MCPcopy Create free account
hub / github.com/FlowiseAI/Flowise / truncateString

Function truncateString

packages/ui/src/utils/genericHelper.js:1078–1080  ·  view source on GitHub ↗
(str, maxLength)

Source from the content-addressed store, hash-verified

1076}
1077
1078export const truncateString = (str, maxLength) => {
1079 return str.length > maxLength ? `${str.slice(0, maxLength - 3)}...` : str
1080}
1081
1082const toCamelCase = (str) => {
1083 return str

Callers 3

ShowWorkspaceRowFunction · 0.90
EvalDatasetsFunction · 0.90
EvaluatorsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected