Skip to content

Instantly share code, notes, and snippets.

@zwilias
Created May 30, 2013 10:46
Show Gist options
  • Save zwilias/5677063 to your computer and use it in GitHub Desktop.
Save zwilias/5677063 to your computer and use it in GitHub Desktop.
function fbSave(result, collection) {
if (result.data) {
for (i in result.data) {
db[collection].save(result.data[i]);
}
return result.data.length;
} else {
db[collection].save(result);
return 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment