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