Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/github-linguist/src/index.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit only adds a single package and all of its transitive dependencies. The github-linguist package will be used for counting lines of code as a baseline for databases we are analyzing.
29 lines (25 sloc)
770 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @ts-ignore | |
import slash from 'slash2'; | |
import fs from 'fs-extra'; | |
import { LocDir, LocResult } from './directory'; | |
import { LocFile } from './file'; | |
export { LocDir, LocDirOptions } from './directory'; | |
export { LocFile, LineInfo } from './file'; | |
const loc = async ( | |
fileOrDir: string, | |
): Promise<LocResult> => { | |
const stat = await fs.stat(slash(fileOrDir)); | |
if (stat.isFile()) { | |
const locFile = new LocFile(slash(fileOrDir)); | |
const info = await locFile.getFileInfo(); | |
const filePath = locFile.path; | |
return { | |
info: info.lines, | |
files: [filePath], | |
languages: { [info.languages]: { ...info.lines, sum: 1 } }, | |
}; | |
} | |
const locDir = new LocDir({ cwd: slash(fileOrDir) }); | |
return locDir.loadInfo(); | |
}; | |
export default loc; |