├── .gitignore ├── LICENSE ├── README.md ├── benchmark ├── array-like-to-array.js ├── concat-strings.js ├── declare-class.js ├── define-a-funciton-with-this.js ├── for-of-for-loop.js ├── index.js ├── merge-objects.js ├── parse-int.js ├── promise-bluebird.js ├── repeat-string.js ├── spread-operator.js ├── string-start-with.js └── var-let-const.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/array-like-to-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/array-like-to-array.js -------------------------------------------------------------------------------- /benchmark/concat-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/concat-strings.js -------------------------------------------------------------------------------- /benchmark/declare-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/declare-class.js -------------------------------------------------------------------------------- /benchmark/define-a-funciton-with-this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/define-a-funciton-with-this.js -------------------------------------------------------------------------------- /benchmark/for-of-for-loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/for-of-for-loop.js -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /benchmark/merge-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/merge-objects.js -------------------------------------------------------------------------------- /benchmark/parse-int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/parse-int.js -------------------------------------------------------------------------------- /benchmark/promise-bluebird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/promise-bluebird.js -------------------------------------------------------------------------------- /benchmark/repeat-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/repeat-string.js -------------------------------------------------------------------------------- /benchmark/spread-operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/spread-operator.js -------------------------------------------------------------------------------- /benchmark/string-start-with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/string-start-with.js -------------------------------------------------------------------------------- /benchmark/var-let-const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/benchmark/var-let-const.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidCai1111/ES6-benchmark/HEAD/package.json --------------------------------------------------------------------------------