Comparing version 1.0.14 to 1.0.15
@@ -70,5 +70,5 @@ const csvWriter = require('csv-write-stream'); | ||
.on('data', function (row) { | ||
console.log(row.name); | ||
console.log(row.clientId); | ||
if (row.name == clientIdentifier || row.clientId == clientIdentifier) { | ||
var name = row.name; | ||
var id = row.clientId; | ||
if (name === clientIdentifier || id === clientIdentifier) { | ||
return JSON.stringify(createClientConfig(row)); | ||
@@ -75,0 +75,0 @@ } |
{ | ||
"name": "coaclient", | ||
"version": "1.0.14", | ||
"version": "1.0.15", | ||
"description": "Custom Node.js library for manage CourseraOAuth2 API tokens", | ||
@@ -5,0 +5,0 @@ "main": "coaclient", |
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
9335