| .. | |||
| src | 7 months ago | ||
| .babelrc | 7 months ago | ||
| .eslintrc | 7 months ago | ||
| .npmignore | 7 months ago | ||
| .travis.yml | 7 months ago | ||
| LICENSE | 7 months ago | ||
| README.md | 7 months ago | ||
| package.json | 7 months ago | ||
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
No flag is required for Node.js v6.*; use node --harmony_proxies flag for v5.* and v4.*.
import idObj from 'identity-obj-proxy'; console.log(idObj.foo); // 'foo' console.log(idObj.bar); // 'bar' console.log(idObj[1]); // '1'