Skip to content

Instantly share code, notes, and snippets.

@panstav
Created June 23, 2016 11:46
Show Gist options
  • Save panstav/c62b0a3c26117c2743b5f529537afe71 to your computer and use it in GitHub Desktop.
Save panstav/c62b0a3c26117c2743b5f529537afe71 to your computer and use it in GitHub Desktop.
mongoose id normalizer
module.exports = function(id){
if (typeof(id) === 'string') return id;
if (typeof(id) === 'object') return id.toString();
return undefined;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment