├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── index.js ├── package.json ├── test.sh └── tests ├── array-includes.js ├── arrow.js ├── destructing.js ├── duplicate-key.js ├── exponential.js ├── for-of.js ├── function-name.js ├── parameters.js ├── promise.js ├── regex.js └── trailing-function-commas.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/package.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/test.sh -------------------------------------------------------------------------------- /tests/array-includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/array-includes.js -------------------------------------------------------------------------------- /tests/arrow.js: -------------------------------------------------------------------------------- 1 | var foo = () => {}; 2 | -------------------------------------------------------------------------------- /tests/destructing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/destructing.js -------------------------------------------------------------------------------- /tests/duplicate-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/duplicate-key.js -------------------------------------------------------------------------------- /tests/exponential.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/exponential.js -------------------------------------------------------------------------------- /tests/for-of.js: -------------------------------------------------------------------------------- 1 | for (var a of [1, 2]) { 2 | } 3 | -------------------------------------------------------------------------------- /tests/function-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/function-name.js -------------------------------------------------------------------------------- /tests/parameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/parameters.js -------------------------------------------------------------------------------- /tests/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/promise.js -------------------------------------------------------------------------------- /tests/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/regex.js -------------------------------------------------------------------------------- /tests/trailing-function-commas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelcontento/babel-preset-modern-node/HEAD/tests/trailing-function-commas.js --------------------------------------------------------------------------------