Skip to content

Commit 4edf6ce

Browse files
author
Bret Ambrose
committed
Sigh
1 parent 7f8a4b9 commit 4edf6ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

device/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ function isSensitiveProperty(property) {
190190

191191
function logSensitiveObject(options) {
192192
console.log('{');
193-
Object.entries(options).forEach(function([property, value]) {
193+
Object.keys(options).forEach(function(property) {
194194
if (!isSensitiveProperty(property)) {
195195
console.log(" " + property);// + " : " + value);
196196
} /*else {

0 commit comments

Comments
 (0)