@rikishi/watermelondb
Version:
Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast
17 lines (13 loc) • 391 B
JavaScript
;
exports.__esModule = true;
exports.onLowMemory = onLowMemory;
exports._triggerOnLowMemory = _triggerOnLowMemory;
var lowMemoryCallbacks = [];
function onLowMemory(callback) {
lowMemoryCallbacks.push(callback);
} // TODO: Not currently hooked up to anything
function _triggerOnLowMemory() {
lowMemoryCallbacks.forEach(function (callback) {
return callback();
});
}