swissdev-tech-tags 0.0.172 → 0.0.173
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -515,6 +515,7 @@ const extractTechTagsFrom = (jobForm, techTags) => {
|
|
|
515
515
|
if (name.includes('web')) foundTechTags.add("Web")
|
|
516
516
|
foundTechTags.delete("CAN")
|
|
517
517
|
foundTechTags.delete("R")
|
|
518
|
+
foundTechTags.delete("C")
|
|
518
519
|
return [...foundTechTags]
|
|
519
520
|
}
|
|
520
521
|
|
|
@@ -554,6 +555,7 @@ const extractTechTagsFromStringArray = (stringsToTest, techTags) => {
|
|
|
554
555
|
|
|
555
556
|
foundTechTags.delete("CAN")
|
|
556
557
|
foundTechTags.delete("R")
|
|
558
|
+
foundTechTags.delete("C")
|
|
557
559
|
|
|
558
560
|
return foundTechTags
|
|
559
561
|
}
|