UNPKG

react-native-mmkv

Version:

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

11 lines (9 loc) 279 B
import type { MMKV } from '../specs/MMKV.nitro' import { createMMKV } from './createMMKV' let defaultInstance: MMKV | null = null export function getDefaultMMKVInstance(): MMKV { if (defaultInstance == null) { defaultInstance = createMMKV() } return defaultInstance }