Created
July 1, 2012 21:32
-
-
Save evanp/3029708 to your computer and use it in GitHub Desktop.
Person
This file contains 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
Person.fromIdentifier(id, function(err, person) { | |
if (err) { | |
throw err; | |
} else { | |
res.json(person); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment