We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f8a4b9 commit 4edf6ceCopy full SHA for 4edf6ce
device/index.js
@@ -190,7 +190,7 @@ function isSensitiveProperty(property) {
190
191
function logSensitiveObject(options) {
192
console.log('{');
193
- Object.entries(options).forEach(function([property, value]) {
+ Object.keys(options).forEach(function(property) {
194
if (!isSensitiveProperty(property)) {
195
console.log(" " + property);// + " : " + value);
196
} /*else {
0 commit comments