1.0.0 • Published 4 years ago

upick v1.0.0

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

μpick

A typescript pick utility.

Features

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

Usage

install

npm i upick

import

import upick from 'upick'

use μpick

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

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

const result = upick(object, ['a', 'c']);

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