-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunderscore.taiste.js
36 lines (35 loc) · 1.28 KB
/
underscore.taiste.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
(function(_) {
_.mixin({
pluckNested: function(obj, key, allow_empty) {
var keys = _.isArray(key) ? key : key.split('.');
if(!_.isArray(obj)) { obj = [obj]; }
var result = _.compact(_.map(obj, function(item) {
var memo = item;
var k = [];
var subkey;
k.push.apply(k, keys);
while((subkey = k.shift())) {
if(subkey === '*') {
return _.pluckNested(_.values(memo), k);
} else if(memo[subkey]) {
memo = memo[subkey];
} else if(allow_empty) {
return undefined;
} else {
throw "No such key: "+subkey;
}
}
return !_.isEmpty(memo) ? memo : undefined;
}));
return result;
},
bipartite: function(list, criterion) {
return _.reduce(list,
function(p, item) {
p[ criterion(item) ? 0 : 1 ].push(item);
return p;
},
[[], []]);
}
});
})(_);