UNPKG

react-native-mmkv

Version:

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

12 lines (9 loc) 245 B
import { getMMKVFactory } from '../getMMKVFactory' import { isTest } from '../isTest' export function existsMMKV(id: string): boolean { if (isTest()) { return true } const factory = getMMKVFactory() return factory.existsMMKV(id) }