|
|
@ -58,8 +58,9 @@ const Wappalyzer = {
|
|
|
|
Wappalyzer.resolveImplies(resolved)
|
|
|
|
Wappalyzer.resolveImplies(resolved)
|
|
|
|
|
|
|
|
|
|
|
|
const priority = ({ technology: { categories } }) =>
|
|
|
|
const priority = ({ technology: { categories } }) =>
|
|
|
|
categories.reduce((max, id) =>
|
|
|
|
categories.reduce(
|
|
|
|
Math.max(max, Wappalyzer.getCategory(id).priority)
|
|
|
|
(max, id) => Math.max(max, Wappalyzer.getCategory(id).priority),
|
|
|
|
|
|
|
|
0
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
return resolved
|
|
|
|
return resolved
|
|
|
|