Partial application and currying with Javascript
In the strict way, currying is the technique of transforming a function that takes multiple arguments (a tuple of arguments) to one function that receive only one. In such way, currying techniques allow transform one multi-parameter function in a chain of functions, each one with a single argument. Looks complicated? Blah.. it is not true.In this little article, we are actually more interesting in partial applications. Let’s take the Mozilla Example for replace function in String. As we know, we can use a “replacer” function as paramenter for replace method in String object.
Let’s say that we want to split a String defined by a non-numerical part, a numerical part and finally a non-alphanumeric part. Here is how:
1 2 3 4 | function replacer(match, p1, p2, p3, offset, string){ // p1 is nondigits, p2 digits, and p3 non-alphanumerics return [p1, p2, p3].join( ' - ' ); }; |
1 | var newString = "abc12345#$*%" .replace(/([^\d]*)(\d*)([^\w]*)/, replacer); |
1 2 3 | function replacer(delimiter, match, p1, p2, p3, offset, string){ return [p1, p2, p3].join(delimiter); } |
We want to have a partial application for that function. Take that!
1 2 3 4 5 | function makeReplacer(delimiter) { return function replacer(match, p1, p2, p3, offset, string){ return [p1, p2, p3].join(delimiter); } } |
1 2 | var delimiter = ',' ; var csvReplacer = makeReplacer(delimiter) |
1 2 3 4 5 6 7 | Function.prototype.curry = function () { var fn = this , args = Array.prototype.slice.call(arguments); return function () { // new function return fn.apply( this , args.concat( Array.prototype.slice.call(arguments))); }; }; |
1 2 | var fn = this ; var args = Array.prototype.slice.call(arguments); |
1 | Array.prototype.slice.call(arguments); |
1 | return fn.apply( this , args.concat(Array.prototype.slice.call(arguments)));}; |
1 2 | var delimiter = ',' ; var csvReplacer = replacer.curry(delimiter) |
Comentários
The Hard Rock Hotel 밀양 출장샵 and Casino and Spa is an 부천 출장샵 on-site 보령 출장샵 casino and hotel located in Las Vegas, Nevada, 경기도 출장마사지 United States, 25 minutes away from McCarran International 양주 출장안마 Airport. Rating: 4.2 · 3,488 reviews