WUT_Computer_Science/EGUI/lab3/front/node_modules/identity-obj-proxy
2022-06-15 03:02:51 +02:00
..
src chore 2022-06-15 03:02:51 +02:00
.babelrc chore 2022-06-15 03:02:51 +02:00
.eslintrc chore 2022-06-15 03:02:51 +02:00
.npmignore chore 2022-06-15 03:02:51 +02:00
.travis.yml chore 2022-06-15 03:02:51 +02:00
LICENSE chore 2022-06-15 03:02:51 +02:00
package.json chore 2022-06-15 03:02:51 +02:00
README.md chore 2022-06-15 03:02:51 +02:00

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'