How to use the @react-native-community/async-storage.multiMerge function in @react-native-community/async-storage

To help you get started, we’ve selected a few @react-native-community/async-storage examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github shuiRong / Gakki / src / utils / store.js View on Github external
export const multiMerge = (multi_set_pairs, cb = () => {}) => {
  return AsyncStorage.multiMerge(multi_set_pairs, cb)
}
github callstack / async-storage / src / index.mobile.js View on Github external
  multiMerge: kvPairs => AsyncStorage.multiMerge(kvPairs),
};