dify/web/app/components/workflow/nodes/human-input/utils.ts
Wu Tianwei fedd097f63
feat: Human Input node (Frontend Part) (#31631)
Co-authored-by: JzoNg <jzongcode@gmail.com>
Co-authored-by: Joel <iamjoel007@gmail.com>
Co-authored-by: yessenia <yessenia.contact@gmail.com>
Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com>
2026-01-30 10:16:46 +08:00

4 lines
97 B
TypeScript

export const isOutput = (valueSelector: string[]) => {
return valueSelector[0] === '$output'
}