UNPKG

es6-arrow-function

Version:

Shorthand arrow functions compiled to ES5.

5 lines (3 loc) 99 B
/* jshint esnext:true */ var odds = [0, 2, 4].map(v => v + 1); assert.deepEqual(odds, [1, 3, 5]);