(item)
| 19 | export const isMentionAgentResourceKind = (kind) => MENTION_AGENT_RESOURCE_KINDS.includes(kind) |
| 20 | |
| 21 | export const getAgentConfigOptions = (item) => (Array.isArray(item?.options) ? item.options : []) |
| 22 | |
| 23 | export const getAgentConfigOptionValue = (option) => { |
| 24 | if (typeof option !== 'object' || option === null) return option |
no outgoing calls
no test coverage detected