gitextract_fweuqa69/ ├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin/ │ ├── chromedriver │ ├── run.sh │ ├── selenium-server-standalone-2.45.0.jar │ ├── selenium.sh │ └── test-all.sh ├── bower.json ├── data.json ├── gulpfile.js ├── lib/ │ ├── args.js │ ├── browser-profile.js │ ├── browser.js │ ├── data-store.js │ ├── iframe.js │ ├── node-profile.js │ ├── node-test.js │ ├── node.js │ ├── redirect-prerelease.html │ ├── redirect-stable.html │ ├── runner.js │ ├── user-agent.js │ ├── worker-test.js │ └── worker.js ├── notes.json ├── package.json ├── report/ │ ├── index.js │ └── report.css ├── tasks/ │ ├── bench.handlebars │ ├── build.js │ ├── driver.js │ ├── local.js │ ├── node.js │ ├── profile.handlebars │ ├── report.handlebars │ ├── report.js │ ├── sauce.js │ ├── server.js │ └── vm.js └── tests/ ├── .eslintrc ├── arrow/ │ ├── arrow.es5 │ ├── arrow.es5-bind │ └── arrow.es6 ├── arrow-args/ │ ├── arrow-args.es5 │ └── arrow-args.es6 ├── arrow-declare/ │ ├── arrow-declare.es5 │ └── arrow-declare.es6 ├── bindings/ │ ├── bindings.es5 │ └── bindings.es6 ├── bindings-compound/ │ ├── bindings-compound.es5 │ └── bindings-compound.es6 ├── classes/ │ ├── classes.es5 │ └── classes.es6 ├── defaults/ │ ├── defaults.es5 │ └── defaults.es6 ├── destructuring/ │ ├── destructuring.es5 │ └── destructuring.es6 ├── destructuring-array/ │ ├── destructuring-array.es5 │ └── destructuring-array.es6 ├── destructuring-custom-iterator/ │ ├── destructuring-custom-iterator.es5 │ └── destructuring-custom-iterator.es6 ├── destructuring-default-values/ │ ├── destructuring-default-values.es5 │ └── destructuring-default-values.es6 ├── destructuring-nested-object/ │ ├── destructuring-nested-object.es5 │ └── destructuring-nested-object.es6 ├── destructuring-simple/ │ ├── destructuring-simple.es5 │ └── destructuring-simple.es6 ├── destructuring-string/ │ ├── destructuring-string.es5 │ └── destructuring-string.es6 ├── for-of-array/ │ ├── for-of-array.es5 │ └── for-of-array.es6 ├── for-of-object/ │ ├── for-of-object.es5 │ └── for-of-object.es6 ├── generator/ │ ├── generator.es5 │ └── generator.es6 ├── map-set/ │ ├── map-set.es5 │ └── map-set.es6 ├── map-set-lookup/ │ ├── map-set-lookup.es5 │ └── map-set-lookup.es6 ├── map-set-object/ │ ├── map-set-object.es5 │ └── map-set-object.es6 ├── map-string/ │ ├── map-string.es5 │ └── map-string.es6 ├── new-target/ │ ├── defaults.es5 │ └── defaults.es6 ├── nodesource-array-includes/ │ ├── nodesource-array-includes.es5 │ └── nodesource-array-includes.es6 ├── nodesource-default-params/ │ ├── nodesource-default-params.es5 │ └── nodesource-default-params.es6 ├── object-assign/ │ ├── object-assign.es5 │ └── object-assign.es6 ├── object-literal-ext/ │ ├── object-literal-ext.es5 │ └── object-literal-ext.es6 ├── promises/ │ ├── promises.es5 │ └── promises.es6 ├── regex-u/ │ ├── regex-u.es5 │ └── regex-u.es6 ├── rest/ │ ├── rest.es5 │ └── rest.es6 ├── spread/ │ ├── spread.es5 │ └── spread.es6 ├── spread-generator/ │ ├── spread-generator.es5 │ └── spread-generator.es6 ├── spread-literal/ │ ├── spread-literal.es5 │ └── spread-literal.es6 ├── spread-super/ │ ├── spread-super.es5 │ └── spread-super.es6 ├── super/ │ ├── super.es5 │ └── super.es6 ├── template_string/ │ ├── template_string.es5 │ └── template_string.es6 └── template_string_tag/ ├── template_string_tag.es5 └── template_string_tag.es6