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

https://github.com/raininfall/immutable-normalize


https://github.com/raininfall/immutable-normalize

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# immutable-normalize
---
[![build status](https://travis-ci.org/RainInFall/immutable-normalize.svg?branch=master)](https://travis-ci.org/RainInFall/immutable-normalize.svg?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/RainInFall/immutable-normalize/badge.svg?branch=master)](https://coveralls.io/github/RainInFall/immutable-normalize?branch=master)

## Usage

```js
import Immutable from 'immutable';
import wrap, {set} from 'immutable-normalize';

let data = wrap(Immutable.Map({a:1, b:2}));
console.log(data.a); //1
console.log(data.b); //2
console.log(data.set); //undefined
```