Skip to content

Instantly share code, notes, and snippets.

@aspyct
Created June 26, 2012 12:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspyct/2995609 to your computer and use it in GitHub Desktop.
Save aspyct/2995609 to your computer and use it in GitHub Desktop.
A short dependency container for javascript / node applications
> var sb = new ServiceBox();
> sb.msg = "Hello World";
> var handler = sb.wrap(function (prefix) {
... console.log(prefix);
... console.log(this.msg);
... });
> handler("this is the prefix");
this is the prefix
Hello World
var ServiceBox = function () {
var self = this;
this.wrap = function (func) {
return function () {
return func.apply(self, arguments);
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment