UNPKG

barrelsby

Version:

Automatic TypeScript barrels for your entire code base

8 lines (5 loc) 214 B
import path from 'path'; export type BaseUrl = string | undefined; export function getCombinedBaseUrl(rootPath: string, baseUrl: BaseUrl): BaseUrl { return baseUrl ? path.join(rootPath, baseUrl) : undefined; }