ilya_shyian 1c5a2a8f35 +react/react-store 3 anos atrás
..
src 1c5a2a8f35 +react/react-store 3 anos atrás
.babelrc 1c5a2a8f35 +react/react-store 3 anos atrás
.eslintrc 1c5a2a8f35 +react/react-store 3 anos atrás
.npmignore 1c5a2a8f35 +react/react-store 3 anos atrás
.travis.yml 1c5a2a8f35 +react/react-store 3 anos atrás
LICENSE 1c5a2a8f35 +react/react-store 3 anos atrás
README.md 1c5a2a8f35 +react/react-store 3 anos atrás
package.json 1c5a2a8f35 +react/react-store 3 anos atrás

README.md

identity-obj-proxy Build Status npm version test coverage

An identity object using ES6 proxies. Useful for testing trivial webpack imports. For instance, you can tell Jest to mock this object as imported CSS modules; then all your className lookups on the imported styles object will be returned as-is.

npm install identity-obj-proxy

Requirement

No flag is required for Node.js v6.*; use node --harmony_proxies flag for v5.* and v4.*.

Example

import idObj from 'identity-obj-proxy';
console.log(idObj.foo); // 'foo'
console.log(idObj.bar); // 'bar'
console.log(idObj[1]); // '1'