mirror of
https://github.com/langgenius/dify.git
synced 2026-04-07 21:00:33 -04:00
13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import type { Var } from '../../types'
|
|
import { VarType } from '../../types'
|
|
|
|
export const filterVar = (varType: VarType) => {
|
|
return (v: Var) => {
|
|
if (varType === VarType.any)
|
|
return true
|
|
if (v.type === VarType.any)
|
|
return true
|
|
return v.type === varType
|
|
}
|
|
}
|