├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json └── src ├── __tests__ ├── import-es6-export-test.js ├── import-es6-import-export-test.js ├── import-es6-import-test.js ├── import-vanilla-test.js ├── index-test.js ├── require-es6-export-test.js ├── require-es6-import-export-test.js ├── require-es6-import-test.js └── require-vanilla-test.js ├── index.js └── test-redirections ├── idObjES6Export.js ├── idObjES6Import.js └── idObjES6ImportExport.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015", "stage-0" ], 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/import-es6-export-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/import-es6-export-test.js -------------------------------------------------------------------------------- /src/__tests__/import-es6-import-export-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/import-es6-import-export-test.js -------------------------------------------------------------------------------- /src/__tests__/import-es6-import-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/import-es6-import-test.js -------------------------------------------------------------------------------- /src/__tests__/import-vanilla-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/import-vanilla-test.js -------------------------------------------------------------------------------- /src/__tests__/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/index-test.js -------------------------------------------------------------------------------- /src/__tests__/require-es6-export-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/require-es6-export-test.js -------------------------------------------------------------------------------- /src/__tests__/require-es6-import-export-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/require-es6-import-export-test.js -------------------------------------------------------------------------------- /src/__tests__/require-es6-import-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/require-es6-import-test.js -------------------------------------------------------------------------------- /src/__tests__/require-vanilla-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/__tests__/require-vanilla-test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/index.js -------------------------------------------------------------------------------- /src/test-redirections/idObjES6Export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/test-redirections/idObjES6Export.js -------------------------------------------------------------------------------- /src/test-redirections/idObjES6Import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/test-redirections/idObjES6Import.js -------------------------------------------------------------------------------- /src/test-redirections/idObjES6ImportExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keyz/identity-obj-proxy/HEAD/src/test-redirections/idObjES6ImportExport.js --------------------------------------------------------------------------------