https://github.com/raininfall/immutable-normalize
https://github.com/raininfall/immutable-normalize
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raininfall/immutable-normalize
- Owner: raininfall
- License: mit
- Created: 2016-06-15T03:28:35.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-17T09:07:06.000Z (about 10 years ago)
- Last Synced: 2026-05-02T01:36:16.186Z (about 2 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# immutable-normalize
---
[](https://travis-ci.org/RainInFall/immutable-normalize.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
```