Skip to content

Instantly share code, notes, and snippets.

@aspyct
Created June 26, 2012 12:45
Embed
What would you like to do?
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