Proxy badge lookup for shields.io
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
261 B

  1. module.exports = (library, brands, resolve) => {
  2. const { [library]: resolvedLibrary = library } = resolve
  3. const [b = null, ] = brands.filter(b => b.name.toLowerCase() === resolvedLibrary.toLowerCase())
  4. if (b !== null) {
  5. return b
  6. }
  7. return null
  8. }