├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── karma.conf.js ├── package.json └── tests ├── Array.spec.js ├── Math.spec.js ├── Object.spec.js ├── arrow_function.spec.js ├── class.spec.js ├── default.spec.js ├── destructuring.spec.js ├── enhanced_literal.spec.js ├── generator.spec.js ├── iterator.spec.js ├── let_and_const.spec.js ├── map.spec.js ├── number.spec.js ├── promises.spec.js ├── rest_and_spread.spec.js ├── set.spec.js ├── string.spec.js ├── symbols.spec.js ├── template_strings.spec.js ├── weak-map.spec.js └── weak-set.spec.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | **/.DS_Store -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/package.json -------------------------------------------------------------------------------- /tests/Array.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/Array.spec.js -------------------------------------------------------------------------------- /tests/Math.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/Math.spec.js -------------------------------------------------------------------------------- /tests/Object.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/Object.spec.js -------------------------------------------------------------------------------- /tests/arrow_function.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/arrow_function.spec.js -------------------------------------------------------------------------------- /tests/class.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/class.spec.js -------------------------------------------------------------------------------- /tests/default.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/default.spec.js -------------------------------------------------------------------------------- /tests/destructuring.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/destructuring.spec.js -------------------------------------------------------------------------------- /tests/enhanced_literal.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/enhanced_literal.spec.js -------------------------------------------------------------------------------- /tests/generator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/generator.spec.js -------------------------------------------------------------------------------- /tests/iterator.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/iterator.spec.js -------------------------------------------------------------------------------- /tests/let_and_const.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/let_and_const.spec.js -------------------------------------------------------------------------------- /tests/map.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/map.spec.js -------------------------------------------------------------------------------- /tests/number.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/number.spec.js -------------------------------------------------------------------------------- /tests/promises.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/promises.spec.js -------------------------------------------------------------------------------- /tests/rest_and_spread.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/rest_and_spread.spec.js -------------------------------------------------------------------------------- /tests/set.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/set.spec.js -------------------------------------------------------------------------------- /tests/string.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/string.spec.js -------------------------------------------------------------------------------- /tests/symbols.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/symbols.spec.js -------------------------------------------------------------------------------- /tests/template_strings.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/template_strings.spec.js -------------------------------------------------------------------------------- /tests/weak-map.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/weak-map.spec.js -------------------------------------------------------------------------------- /tests/weak-set.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angus-c/es6-tests/HEAD/tests/weak-set.spec.js --------------------------------------------------------------------------------