@codewell/from-object-keys
v1.0.0
Published
## Installation
Downloads
1
Readme
@codewell/from-object-keys
Installation
npm install @codewell/from-object-keys
Basic Usage
import fromObjectKeys from '@codewell/from-object-keys';
const myObject = {
foo: 123,
bar: 'hello world',
};
fromObjectKeys('bar', 'foo')(myObject);
// => ['hello world', 123]