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
|
// Repeats each item in a list in-place by a corresponding length.
import {input, templateCompositeFrom} from '#composite';
import {repeat, stitchArrays} from '#sugar';
import {isNumber, validateArrayItems} from '#validators';
export default templateCompositeFrom({
annotation: `withStretchedList`,
inputs: {
list: input({type: 'array'}),
lengths: input({
validate: validateArrayItems(isNumber),
}),
},
outputs: ['#stretchedList'],
steps: () => [
{
dependencies: [input('list'), input('lengths')],
compute: (continuation, {
[input('list')]: list,
[input('lengths')]: lengths,
}) => continuation({
['#stretchedList']:
stitchArrays({
item: list,
length: lengths,
}).map(({item, length}) => repeat(length, [item]))
.flat(),
}),
},
],
});
|