You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Yutsuo f420f5aeaa initial commit 6 years ago
..
src initial commit 6 years ago
.babelrc initial commit 6 years ago
.eslintrc initial commit 6 years ago
.npmignore initial commit 6 years ago
.travis.yml initial commit 6 years ago
LICENSE initial commit 6 years ago
README.md initial commit 6 years ago
package.json initial commit 6 years 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'