Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
themusicgod1
/
babel
Watch
0
Star
0
Fork
1
Files
Issues
4
Pull Requests
0
Wiki
Tree:
fb9abb34e1
Branches
Tags
master
babel
/
packages
/
babel-plugin-proposal-pipeline-operator
/
test
/
fixtures
/
pipeline-operator
/
chaining
/
input.js
input.js
90 B
History
Raw
1
2
3
4
5
var inc = (x) => x + 1;
var double = (x) => x * 2;
expect(10 |> inc |> double).toBe(22);