You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Data is returned as expectedstore.get('/');// { a: 'a', b: 'b', c: { inside_c: 'inside_c' } }// Root metadata returned as expectedstore.meta('/');// { root: 'root_meta' }// Metadata for primitive value is unreachablestore.meta('/b');// undefined// Metadata for object is returned as expectedconsole.log(store.meta('/c'));// inside_c_meta
Expected behaviour
store.meta('/b');// 'b'
The text was updated successfully, but these errors were encountered:
Problem
Metadata for primitive values (non-objects) cannot be requested by the key (e.g.
Store.meta('/b')
.Version
Steps to reproduce
Actual behaviour
Expected behaviour
The text was updated successfully, but these errors were encountered: