Skip to content

Instantly share code, notes, and snippets.

@ianaya89
Created June 28, 2016 14:27
Show Gist options
  • Save ianaya89/5a37df5af8c83af80cdebf04143dede4 to your computer and use it in GitHub Desktop.
Save ianaya89/5a37df5af8c83af80cdebf04143dede4 to your computer and use it in GitHub Desktop.
exports.save = function(name, callback){
Item.create({name: name},function(error, item){
if(error){
callback(error);
return;
}
callback(null, item);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment