stackoverflow-careers
Advanced tools
Comparing version 1.0.7 to 1.0.8
@@ -49,8 +49,8 @@ let xml2js = require('xml2js').parseString, | ||
if(props.td) { | ||
builtUrl += utils.TechDisliked + arrToUrl(props.td) | ||
if(props.techDisliked) { | ||
builtUrl += utils.TechDisliked + arrToUrl(props.techDisliked) | ||
} | ||
if(props.tl) { | ||
builtUrl += utils.TechLiked + arrToUrl(props.tl) | ||
if(props.techLiked) { | ||
builtUrl += utils.TechLiked + arrToUrl(props.techLiked) | ||
} | ||
@@ -57,0 +57,0 @@ |
{ | ||
"name": "stackoverflow-careers", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "A wrapper for the StackOverflow careers feed.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -21,4 +21,4 @@ # StackOverflow Careers API for Javascript applications. | ||
query: "contractor positions", // Any additional requirements, such as part time, contractor, startup etc. | ||
tl: ["javascript", "java", "c"], // Tech liked | ||
td: ["perl", "rust", "fortran"], // Tech disliked | ||
techLiked: ["javascript", "java", "c"], // Tech liked | ||
techDisliked: ["perl", "rust", "fortran"], // Tech disliked | ||
unit: "miles" // Unit of measurement. | ||
@@ -25,0 +25,0 @@ }, (jobs) => { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4135