rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
13 lines • 347 B
JavaScript
/**
* Custom build of the mingo updater for smaller build size
*/
import { update } from "mingo/updater";
import { clone } from "../utils/index.js";
export function mingoUpdater(d, op) {
var cloned = clone(d);
update(cloned, op, undefined, undefined, {
cloneMode: "none"
});
return cloned;
}
//# sourceMappingURL=mingo-updater.js.map