Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ruanyl/rename-props


https://github.com/ruanyl/rename-props

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

# rename-props

### Install:

```
npm i rename-props --save
```

### Useage

```
test('should rename the object', t => {
const obj = {
foo: 'foo',
bar: 'bar',
}
t.deepEqual(rename({ foo: 'name' }, obj), { name: 'foo', bar: 'bar' })
})
```