Евгения Акиншина 52274d6dab HW<react> done 3 yıl önce
..
src 52274d6dab HW<react> done 3 yıl önce
.babelrc 52274d6dab HW<react> done 3 yıl önce
.eslintrc 52274d6dab HW<react> done 3 yıl önce
.npmignore 52274d6dab HW<react> done 3 yıl önce
.travis.yml 52274d6dab HW<react> done 3 yıl önce
LICENSE 52274d6dab HW<react> done 3 yıl önce
README.md 52274d6dab HW<react> done 3 yıl önce
package.json 52274d6dab HW<react> done 3 yıl önce

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'