UNPKG

documentation

Version:
25 lines (21 loc) 612 B
/* @flow */ const path = require('path'); const fs = require('fs'); /** * Given a full path to a single file, iterate upwards through the filesystem * to find a directory with a .git file indicating that it is a git repository * @param filename any file within a repository * @returns repository path */ function findGit(filename: string) { const paths = filename.split(path.sep); for (let i = paths.length; i > 0; i--) { const p = path.resolve( paths.slice(0, i).join(path.sep) + path.sep + '.git' ); if (fs.existsSync(p)) { return p; } } } module.exports = findGit;