overloading
v1.0.4
Published
Define complex overloading strategies for functions.
Downloads
9
Maintainers
Readme
overloading
Define complex overloads for functions! Errors are thrown if no matching overload is found.
##Example
var overloading = require('overloading');
var fooOverloads = overloading([
[Function],
[String, String]
]);
function foo(one, two){
switch(fooOverloads.find(arguments)){
case 0:one();break;
case 1:console.log(one + ' ' + two);break;
}
}
foo('hello', 'world!');
//prints "hello world!"
foo(foo.bind(null, 'say', 'what?'));
//prints "say what?"