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 deleteMMKV(id: string): boolean { if (isTest()) { return true } const factory = getMMKVFactory() return factory.deleteMMKV(id) }