Created
September 28, 2011 07:17
-
-
Save j2labs/1247213 to your computer and use it in GitHub Desktop.
Node.js friendly form of the arity checking decorator for javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.arity_decorator = function(fun) { | |
function wrapped() { | |
if(arguments.length != fun.length) | |
throw new Error("Y U NO USE RIGHT?!") | |
fun.apply(this, arguments) | |
} | |
return wrapped; | |
} | |
exports.foo = function(x, y) { | |
console.log('X:' + x) | |
console.log('Y:' + y) | |
} | |
exports.foo = exports.arity_decorator(exports.foo) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var arity_check = require("./arity_check"); | |
var bar = function(z) { | |
console.log('Hi. Z:' + z); | |
} | |
bar = arity_check.arity_decorator(bar) | |
arity_check.foo(3,4) // Works | |
bar(5) // Works | |
bar(5,6,7) // Throws error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment