| 136 | } |
| 137 | |
| 138 | export const testSubstitute: SubstituteConfig = value => { |
| 139 | if ('id' in value) { |
| 140 | return { |
| 141 | ...value, |
| 142 | id: (value as any).id + '-substituted' |
| 143 | }; |
| 144 | } |
| 145 | return value; |
| 146 | }; |
| 147 | |
| 148 | export const output = makeLog(createPlainLog(text => process.stdout.write(text), () => LogLevel.Trace)); |
| 149 |
no outgoing calls