Package Exports
- boundless-utils-omit-keys
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (boundless-utils-omit-keys) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
omitKeys
Returns a modified version of the supplied object without the given keys.
Installation
npm i boundless-utils-omit-keys --save
Then use it like:
/** @jsx createElement */
import omitKeys from 'boundless-utils-omit-keys';
omitKeys({ foo: 'bar', bar: 'baz' }, [ 'bar' ]); // returns `{foo: 'bar'}`