1.0.0 • Published 4 years ago

uomit v1.0.0

Weekly downloads
129
License
MIT
Repository
github
Last release
4 years ago

μomit

A typescript omit utility.

Features

  • returns an object with keys and values omitted from a given object
  • type safe.
  • smallest possible size and lightest cpu load

Usage

install

npm i uomit

import

import uomit from 'uomit'

use μomit

Give μomit an object and the desired keys to omit.

const object = {
	a: 'a',
	b: 'b',
	c: 'c'
};

const result = uomit(object, ['b']);

expect(result).toStrictEqual({
	a: 'a',
	c: 'c'
});