JS: Autoformat

This commit is contained in:
Henry Mercer
2021-12-07 14:17:11 +00:00
parent 016727d6b6
commit 322e39446d

View File

@@ -280,7 +280,9 @@ predicate tokenFeatures(DataFlow::Node endpoint, string featureName, string feat
(
if strictcount(getTokenFeature(endpoint, featureName)) = 1
then featureValue = getTokenFeature(endpoint, featureName)
// Performance note: this is a Cartesian product between all endpoints and feature names.
else (featureValue = "" and featureName = getASupportedFeatureName())
else (
// Performance note: this is a Cartesian product between all endpoints and feature names.
featureValue = "" and featureName = getASupportedFeatureName()
)
)
}