mirror of
https://github.com/esiur/esiur-js.git
synced 2025-06-27 15:23:11 +00:00
IndexedDB
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user