UNPKG

@picturelink/barrelsby

Version:

Automatic TypeScript barrels for your entire code base

11 lines (8 loc) 220 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; }