It is the pipe operator (F#, Elixir, Haxe, etc.). There is a proposal to add it to js too.
fun: x => x * 2
res: 4 -> fun
const R = require('ramda');
R.pipe(a,f,g,h)
fun: x => x * 2
res: 4 -> fun