Created
September 28, 2011 07:17
-
-
Save j2labs/1247213 to your computer and use it in GitHub Desktop.
Revisions
-
James Dennis revised this gist
Sep 28, 2011 . No changes.There are no files selected for viewing
-
James Dennis created this gist
Sep 28, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ 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