blob: 8710e5d7b5da1d903a47fcaab37e99a56715270d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/node
module.exports = {
etl: {
participant: [ ['Winner', ['attributes', 'stats', 'winner']] ],
roster: [ ],
match: [ ],
},
reduce: {
group: ['Actor', 'Talent'],
sum: ['Level', 'Winner'],
},
};
|