JSPM

@igoradamenko/omit

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q16049F
  • License MIT

Returns passed object without passed keys.

Package Exports

  • @igoradamenko/omit

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 (@igoradamenko/omit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@igoradamenko/omit

npm

Installation

npm i --save @igoradamenko/omit

Usage

import omit from '@igoradamenko/omit';

console.log(omit({ a: 1, b: 2, c: 3 }, 'a', 'b')); // { c: 3 }