Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 260 Bytes

breaking-changes.md

File metadata and controls

14 lines (9 loc) · 260 Bytes

Breaking Changes

Version 0.4

  • Changed Model(modelName) from promise to a object.
// Usage
var reactNativeStore = require('react-native-store');
var fooModel = reactNativeStore.model('foo'); // this was a promise earlier

fooModel.find();