UNPKG

@nozbe/watermelondb

Version:

Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast

14 lines (10 loc) 323 B
// @flow type Callback = () => void const lowMemoryCallbacks: Callback[] = [] export function onLowMemory(callback: Callback): void { lowMemoryCallbacks.push(callback) } // TODO: Not currently hooked up to anything export function _triggerOnLowMemory(): void { lowMemoryCallbacks.forEach((callback) => callback()) }