2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-06-27 15:23:11 +00:00

IndexedDB

This commit is contained in:
2021-02-20 21:54:20 +03:00
parent 0efb266c2a
commit e148a64008
7 changed files with 402 additions and 158 deletions

View File

@ -45,6 +45,15 @@ export default class Structure
return rt;
}
toObject()
{
var rt = {};
for (var i in this)
if (!(this[i] instanceof Function))
rt[i] = this[i];
return rt;
}
constructor(data)
{
if (data instanceof Object)