├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib ├── raw │ ├── function.bind.raw.js │ ├── object.defineProperty.raw.js │ └── object.keys.raw.js └── snippetGenerator.js ├── package.json └── tests ├── build.common.js ├── functionBind ├── index.js └── test.js ├── objectKeys ├── index.js └── test.js └── promise ├── ensureLib.js ├── index.js └── test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/index.js -------------------------------------------------------------------------------- /lib/raw/function.bind.raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/lib/raw/function.bind.raw.js -------------------------------------------------------------------------------- /lib/raw/object.defineProperty.raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/lib/raw/object.defineProperty.raw.js -------------------------------------------------------------------------------- /lib/raw/object.keys.raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/lib/raw/object.keys.raw.js -------------------------------------------------------------------------------- /lib/snippetGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/lib/snippetGenerator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/package.json -------------------------------------------------------------------------------- /tests/build.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/tests/build.common.js -------------------------------------------------------------------------------- /tests/functionBind/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/tests/functionBind/index.js -------------------------------------------------------------------------------- /tests/functionBind/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/tests/functionBind/test.js -------------------------------------------------------------------------------- /tests/objectKeys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/tests/objectKeys/index.js -------------------------------------------------------------------------------- /tests/objectKeys/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/tests/objectKeys/test.js -------------------------------------------------------------------------------- /tests/promise/ensureLib.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | foo:"foo" 3 | } 4 | -------------------------------------------------------------------------------- /tests/promise/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/tests/promise/index.js -------------------------------------------------------------------------------- /tests/promise/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-zone/webpack2-polyfill-plugin/HEAD/tests/promise/test.js --------------------------------------------------------------------------------