(location: string)
| 294 | } |
| 295 | |
| 296 | export function isMultichain(location: string): boolean { |
| 297 | const multichainContent = yaml.load(readFileSync(location, 'utf8')) as MultichainProjectManifest; |
| 298 | return !!multichainContent && !!multichainContent.projects; |
| 299 | } |
| 300 | |
| 301 | export async function resultToBuffer(req: AsyncIterable<Uint8Array>): Promise<string> { |
| 302 | const scriptBufferArray: Uint8Array[] = []; |
no outgoing calls
no test coverage detected