(metadata: SCMetadata | undefined | null)
| 169 | } |
| 170 | } |
| 171 | const hasGrantConflict = (metadata: SCMetadata | undefined | null) => |
| 172 | metadata?.grant?.includes("none") && metadata?.grant?.some((s: string) => s.startsWith("GM")); |
| 173 | const hasDuplicatedMetaline = (metadata: SCMetadata | undefined | null) => { |
| 174 | if (metadata) { |
| 175 | for (const list of Object.values(metadata)) { |
no outgoing calls
no test coverage detected