Created
August 27, 2015 21:02
-
-
Save Hanspagh/2ae449b1b46ab35605c3 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function findOrCreate() { | |
db.find(id) | |
.then(function(r){ | |
if(!r) { | |
db.create(id) | |
.then(r) { | |
return "success" | |
} | |
} else { | |
return "error" | |
} | |
}) |
This file contains hidden or 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
function findOrCreate() { | |
var r = db.find(id); | |
if(!r) { | |
db.create(id); | |
return "success" | |
} else { | |
return "error"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment