JSPM

identity-obj-proxy

2.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7377407
  • Score
    100M100P100Q237877F
  • License MIT

an identity object using ES6 proxies

Package Exports

  • identity-obj-proxy

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (identity-obj-proxy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

identity-obj-proxy Build Status npm version

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 lookup on the imported styles object will be returned as-is.

Requirement

node --harmony_proxies flag (>= v0.11)

Example

import idObj from 'identity-obj-proxy';
console.log(idObj.foo); // 'foo'
console.log(idObj.bar); // 'bar'
console.log(idObj[1]); // '1'