(value: unknown)
| 182 | ] |
| 183 | : [] |
| 184 | const toStringArray = (value: unknown): string[] => |
| 185 | Array.isArray(value) |
| 186 | ? [...new Set(value.filter((item): item is string => typeof item === "string"))] |
| 187 | : [] |
| 188 | |
| 189 | state.blocksById.set(blockId, { |
| 190 | blockId, |
no outgoing calls
no test coverage detected