hemanth / functional-programming-jargon

Jargon from the functional programming world in simple terms!
http://git.io/fp-jargons
MIT License
18.59k stars 1.02k forks source link

Typo #105

Closed kishorevarma closed 8 years ago

hemanth commented 8 years ago

it's not a typo, ap is:

Array.prototype.ap = function(xs){
    return this.reduce((acc, f) => acc.concat(xs.map(f)), []);
};
kishorevarma commented 8 years ago

Oh I have miss taken , thanks