-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsortBy.js
47 lines (47 loc) · 931 Bytes
/
sortBy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module.exports = {
name: "sortBy",
ns: "lodash",
description: "sortBy",
async: true,
phrases: {
active: "performing sortBy"
},
ports: {
input: {
"in": {
title: "Collection",
type: "array",
async: true,
fn: function __IN__(data, source, state, input, $, output, lodash) {
var r = function() {
output({
out: $.write('in', lodash.sortBy($.in, $.iteratee))
});
}.call(this);
return {
state: state,
return: r
};
}
},
iteratees: {
title: "Iteratees",
description: "Functions and/or property strings",
type: "array",
required: false
}
},
output: {
out: {
title: "out",
type: "object"
}
}
},
dependencies: {
npm: {
lodash: require('lodash')
}
},
state: {}
}