import { omit as Lodash_omit } from "lodash"; export const omit = (path, record) => { return Lodash_omit(record, path); };