(urlString: string)
| 10 | import { SchematicContext, Source } from '../engine/interface'; |
| 11 | |
| 12 | export function url(urlString: string): Source { |
| 13 | const url = parse(urlString); |
| 14 | |
| 15 | return (context: SchematicContext) => context.engine.createSourceFromUrl(url, context)(context); |
| 16 | } |
no test coverage detected