Skip to content

Instantly share code, notes, and snippets.

@xrd
Created August 12, 2010 16:42
Show Gist options
  • Save xrd/521259 to your computer and use it in GitHub Desktop.
Save xrd/521259 to your computer and use it in GitHub Desktop.
exports.handler = function(func) {
return function(req, res, next ) {
var profile = { 'profile' :
{ 'displayName' : ('fakedUsername' + parseInt( Math.random() * 1000 ) ),
'email' : '[email protected]' } };;
func( profile, req, res, next );
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment