Guest User

Untitled

a guest
May 22nd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const lodash = require('lodash');
  2. const select = ['_id','username','email','sex'];
  3. const selectQur = lodash.reduce(select, function (result, value, key) {
  4. result[value] = 1;
  5. return result;
  6. },{});
  7.  
  8. {
  9. $project: {
  10. _id: 1,
  11. username: 1,
  12. email: 1,
  13. sex: 1
  14. }
  15. }
Add Comment
Please, Sign In to add comment