StoreProxy

Configs

1
objectify: Boolean= false

Allow object like interaction with the Store. For example:

const store = new Store({
   objectify : true,
   data      : [
       { id : 'batman', name : 'Bruce' }
   ]
});

// retrieve using id as property
const record = store.batman;

// add as property
store.superman = { name : 'Clark' };

// delete to remove
delete store.batman;

Properties

2
isStoreProxy: Boolean= truereadonly
Identifies an object as an instance of StoreProxy class, or subclass thereof.
isStoreProxy: Boolean= truereadonlystatic
Identifies an object as an instance of StoreProxy class, or subclass thereof.