max_liu b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
..
src b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
.babelrc b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
.eslintrc b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
.npmignore b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
.travis.yml b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
LICENSE b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
README.md b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny
package.json b7ab7c8514 chore: 更新node_modules依赖文件 před 2 týdny

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'