FanFarm / system / V3fanfarm-ubuntu-local / V3fanfarm-frontend / node_modules / identity-obj-proxy /
@Fanfarm User Fanfarm User authored on 12 Sep
..
src Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
.babelrc Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
.eslintrc Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
.npmignore Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
.travis.yml Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
LICENSE Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
README.md Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
package.json Fix API server issues -Disable Rack::Protection and remove Logger path error 7 months ago
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'