blob: 253520209d1ea080791a56127255e32e7ba49d1b (
plain)
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
|
import {input, templateCompositeFrom} from '#composite';
import {parseInput} from '#replacer';
export default templateCompositeFrom({
annotation: `withContentNodes`,
inputs: {
from: input({type: 'string', acceptsNull: false}),
},
outputs: ['#contentNodes'],
steps: () => [
{
dependencies: [input('from')],
compute: (continuation, {
[input('from')]: string,
}) => continuation({
['#contentNodes']:
parseInput(string),
}),
},
],
});
|