- Gallery

- Popupedit semplificato
This commit is contained in:
Paolo Arena
2021-12-03 22:48:05 +01:00
parent f6b737bcdb
commit 255982ca0f
2 changed files with 26 additions and 137 deletions

View File

@@ -2190,4 +2190,12 @@ module.exports = {
return mystr.replace(/-/g, '/');
},
getNumObj(obj) {
let count = 0;
for (let properties in obj) {
count = count + 1;
}
return count;
},
};