skip 跳过非第三方组件
(s string)
| 41 | |
| 42 | // skip 跳过非第三方组件 |
| 43 | func skip(s string) bool { |
| 44 | return !strings.Contains(s, "/") |
| 45 | } |
| 46 | |
| 47 | func ParseComposerJsonWithLock(json *ComposerJson, lock *ComposerLock) *model.DepGraph { |
| 48 |
no outgoing calls
no test coverage detected