hasValuesSchema
The hasValuesSchema
method returns a boolean indicating whether the Store
currently has a ValuesSchema
applied to it.
hasValuesSchema(): boolean
returns | boolean | Whether the |
---|
Example
This example sets a ValuesSchema
and checks that it is present.
import {createStore} from 'tinybase';
const store = createStore().setValuesSchema({open: {type: 'boolean'}});
console.log(store.hasValuesSchema());
// -> true
store.delValuesSchema();
console.log(store.hasValuesSchema());
// -> false
Since
v4.1.1