UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

11 lines 279 B
/** * @public * Joins two strings `start` and `end` with a `separator`. * * @returns The joined path. * * @remarks * See {@link pathJoin}. */ export declare function pathJoin(start: string, end: string, separator?: string): string; //# sourceMappingURL=path-join.d.ts.map