Allow parsing of pipeline operator
|>
Proposal: mindeavor/es-pipeline-operator
npm install --save-dev babel-plugin-syntax-pipeline
# or
yarn add --dev babel-plugin-syntax-pipeline
.babelrc
{
"plugins": ["syntax-pipeline"]
}
babel --plugins syntax-pipeline script.js
require("babel-core").transform("code", {
plugins: ["syntax-pipeline"]
});
npm run build
npm run test
- Fork it (https://github.com/SuperPaintman/babel-plugin-syntax-pipeline/fork)
- Create your feature branch (
git checkout -b feature/<feature_name>
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin feature/<feature_name>
) - Create a new Pull Request
- SuperPaintman SuperPaintman - creator, maintainer