si-funciona
Version:
Funciones de utilidad para uso general. [General usage utility functions.]
10 lines (9 loc) • 327 B
TypeScript
/**
* Format the given path so that it does not have trailing slashes and also correctly appends a path.
* @memberOf module:stringHelpers
* @param {string} root
* @param {string} [append='']
* @returns {string}
*/
export declare const makeFilepath: (root: string, append?: string) => string;
export default makeFilepath;