UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

19 lines (16 loc) 478 B
import { IHtmlEngineHelper } from './html-engine-helper.interface'; export class RelativeURLHelper implements IHtmlEngineHelper { public helperFunc(context: any, currentDepth: number, options): string { switch (currentDepth) { case 0: return './'; case 1: case 2: case 3: case 4: case 5: return '../'.repeat(currentDepth); } return ''; } }