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

Function convertMultiOptionsToStringArray

packages/components/src/utils.ts:960–968  ·  view source on GitHub ↗
(inputString: string)

Source from the content-addressed store, hash-verified

958 * @returns {string[]}
959 */
960export const convertMultiOptionsToStringArray = (inputString: string): string[] => {
961 let ArrayString: string[] = []
962 try {
963 ArrayString = JSON.parse(inputString)
964 } catch (e) {
965 ArrayString = []
966 }
967 return ArrayString
968}
969
970/**
971 * Get variables

Callers 13

initMethod · 0.90
initMethod · 0.90
initMethod · 0.90
initMethod · 0.90
initMethod · 0.90
initMethod · 0.90
initMethod · 0.90
initMethod · 0.90
initMethod · 0.90
listFilesMethod · 0.90
initMethod · 0.90
initMethod · 0.90

Calls 1

parseMethod · 0.65

Tested by

no test coverage detected