Last active
August 26, 2018 11:55
-
-
Save Anna-Myzukina/f1e2c5d248bd8a09b6422c39f49963e6 to your computer and use it in GitHub Desktop.
lololodash
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
var _ = require("lodash"); | |
var worker = function(users) { | |
return _.where(users, {active: true}); | |
}; | |
module.exports = worker; |
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
'use strict'; | |
var_ = require("lodash"); | |
var sorting = function(collection) { | |
return _.sortBy(collection, function(item) { | |
return -item.quantity; | |
}); | |
} | |
module.exports = sorting; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment