An open API service indexing awesome lists of open source software.

https://github.com/codewell/from-object-keys

Get values from object keys
https://github.com/codewell/from-object-keys

Last synced: 6 days ago
JSON representation

Get values from object keys

Awesome Lists containing this project

README

          

# @codewell/from-object-keys

## Installation

```
npm install @codewell/from-object-keys
```

## Basic Usage

```JavaScript
import fromObjectKeys from '@codewell/from-object-keys';

const myObject = {
foo: 123,
bar: 'hello world',
};

fromObjectKeys('bar', 'foo')(myObject);
// => ['hello world', 123]
```