Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

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();