├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── circle.yml ├── example └── index.html ├── package.json ├── src ├── index.js ├── list.js └── map.js ├── tests ├── list.js └── map.js ├── umd ├── index.js └── index.min.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example 2 | src 3 | tests 4 | webpack.config.js 5 | .babelrc 6 | circle.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/circle.yml -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/example/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/src/list.js -------------------------------------------------------------------------------- /src/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/src/map.js -------------------------------------------------------------------------------- /tests/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/tests/list.js -------------------------------------------------------------------------------- /tests/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/tests/map.js -------------------------------------------------------------------------------- /umd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/umd/index.js -------------------------------------------------------------------------------- /umd/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/umd/index.min.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legitcode/immutable-proxy/HEAD/webpack.config.js --------------------------------------------------------------------------------