UNPKG

react-native-mmkv

Version:

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

10 lines (9 loc) 243 B
import { getMMKVFactory } from '../getMMKVFactory'; import { isTest } from '../isTest'; export function existsMMKV(id) { if (isTest()) { return true; } const factory = getMMKVFactory(); return factory.existsMMKV(id); }