si-funciona
Version:
Funciones de utilidad para uso general. [General usage utility functions.]
10 lines (9 loc) • 298 B
TypeScript
/**
* Compare two file paths and simplify them to a relative path.
* @memberOf module:stringHelpers
* @param {string} fromFile
* @param {string} toFile
* @return {string}
*/
export declare const makeRelativePath: (fromFile: string, toFile: string) => string;
export default makeRelativePath;