Skip to content

Instantly share code, notes, and snippets.

@yardfarmer
Forked from anonymous/index.html
Last active April 11, 2016 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yardfarmer/80402da078bb831da62bab497eb7d009 to your computer and use it in GitHub Desktop.
Save yardfarmer/80402da078bb831da62bab497eb7d009 to your computer and use it in GitHub Desktop.
函数 kerry 化 // source https://jsbin.com/pinade
function splat(fn) {
return function(array) {
// 充分利用了 apply 拆分数组的特性
return fn.apply(null, array);
};
}
// 传入一个函数,返回另外一个函数
var func = splat(function(x, y) {
return x + y;
});
func([1, 2]);
console.log(func([1, 5]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment