/** * Appending the child path to the parent path * @author Yousuf Kalim */ /** * pathParser * @param parent {String} - Parent path * @param child {String} - Child path * @returns {string|string} - Path */ export default function pathParser(parent: string, child: string): string;