UNPKG

mingo

Version:

MongoDB query language for in-memory objects

15 lines (14 loc) 213 B
import { $setField } from "./setField"; const $unsetField = (obj, expr, options) => { return $setField( obj, { ...expr, value: "$$REMOVE" }, options ); }; export { $unsetField };