https://github.com/nixjs/objectify
A tiny object utility
https://github.com/nixjs/objectify
compact compact-objects javascript merge merge-objects objectify omit pick typescript web website
Last synced: 3 months ago
JSON representation
A tiny object utility
- Host: GitHub
- URL: https://github.com/nixjs/objectify
- Owner: nixjs
- Created: 2022-11-04T04:40:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-04T06:49:02.000Z (over 2 years ago)
- Last Synced: 2025-03-05T17:51:13.804Z (4 months ago)
- Topics: compact, compact-objects, javascript, merge, merge-objects, objectify, omit, pick, typescript, web, website
- Language: TypeScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @nixjs23n6/objectify
A tiny object utility.
## Quick Setup
### Install
`yarn add @nixjs23n6/objectify`
### Usage
#### Rename keys
```typescript
const obj = { id: 'toto_id', name: 'toto', age: 35 }
const keys = { id: 'value', name: 'label' }renameKeys(keys, obj)
// { "value": "toto_id", "label": "toto", "age": 35 }
```#### Merge
```typescript
const obj1 = {
a: null,
b: false,
c: true
};
const obj2 = {
k: "demo"
};merge(obj1, obj2);
// { a:null, b: false, c: true, k: "demo" }
```#### Omit
```typescript
const obj = {
a: null,
b: false,
c: true
};omit(obj, ['a','b']);
// { c: true }
```#### Pick
```typescript
const obj = {
a: null,
b: false,
c: true
};pick(obj, ['a','b']);
// { a: null, b: false }
```#### Compact
```typescript
const obj = {
a: null,
b: false,
c: true,
d: 0,
e: 1,
f: '',
g: 'a',
h: [null, false, '', true, 1, 'a'],
i: { j: 0, k: false, l: 'a' }
};compact(obj);
// { c: true, e: 1, g: 'a', h: [ true, 1, 'a' ], i: { l: 'a' } }
```