Lightweight version of Object omit.
npm install lomit


!Coveralls github
!CircleCI
!Snyk Vulnerabilities for GitHub Repo
Lightweight function for omitting properties from an object.
Via npm
``sh`
npm install --save lomit
Via Yarn
`sh`
yarn add lomit
`js
import { omit } from 'lomit';
omit({name: '', title: ''}, ['title']);
`
`sh`
Output: {name: ''}
`js
import { omit } from 'lomit';
omit({name: '', title: '', location: { city: '', state: '' }}, ['title', 'location.city']);
`
`sh``
Output: {name: '', location: { state: '' }}