UNPKG

react-native-mmkv

Version:

⚡️ The fastest key/value storage for React Native.

9 lines (8 loc) 225 B
import { createMMKV } from './createMMKV'; let defaultInstance = null; export function getDefaultMMKVInstance() { if (defaultInstance == null) { defaultInstance = createMMKV(); } return defaultInstance; }