├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── coverage ├── coverage.json ├── lcov-report │ ├── base.css │ ├── index.html │ ├── introspected │ │ ├── index.html │ │ └── introspected.js.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js └── lcov.info ├── index.html ├── introspected.js ├── min.js ├── package.json └── test ├── class-state.js ├── how-to-diff.js └── introspected.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/README.md -------------------------------------------------------------------------------- /coverage/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/coverage.json -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/introspected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/introspected/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/introspected/introspected.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/introspected/introspected.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/index.html -------------------------------------------------------------------------------- /introspected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/introspected.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/package.json -------------------------------------------------------------------------------- /test/class-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/test/class-state.js -------------------------------------------------------------------------------- /test/how-to-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/test/how-to-diff.js -------------------------------------------------------------------------------- /test/introspected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/introspected/HEAD/test/introspected.js --------------------------------------------------------------------------------