chore: format
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
function listProperty(item) {
|
||||
for (var p in item)
|
||||
{
|
||||
if( typeof item[p] != "function" )
|
||||
if(p != "objectName")
|
||||
console.log(p + ":" + item[p]);
|
||||
}
|
||||
|
||||
}
|
||||
for (var p in item) {
|
||||
if (typeof item[p] != "function")
|
||||
if (p != "objectName") console.log(p + ":" + item[p]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user