blob: 269ccd6f2b0fe847f4bdb309070a4a3b5e5221af (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | import {isObject} from '#validators';
import {inputSoupyReverse} from '#composite/wiki-data';
function soupyReverse() {
  return {
    flags: {update: true},
    update: {validate: isObject},
  };
}
soupyReverse.input = inputSoupyReverse.input;
soupyReverse.contributionsBy =
  (bindTo, contributionsProperty) => ({
    bindTo,
    referencing: thing => thing[contributionsProperty],
    referenced: contrib => [contrib.artist],
  });
export default soupyReverse;
 |