James DiGioia 7142a79eb9 Bring pipelineOperator flag in line with minimal
The minimal proposal requires parentheses around arrow functions
and bans await from the pipeline.
2018-04-27 23:15:21 +02:00

6 lines
91 B
JavaScript

var array = [10,20,30];
var last = array |> (a => a[a.length-1]);
expect(last).toBe(30);