UNPKG

clang-format-git

Version:

Node wrapper for git-clang-format Python script as a standalone native binary to allow execution without a Python dependency.🐉

19 lines (18 loc) 758 B
"use strict"; /** * @fileoverview Entry file for the `clang-format-git` package. */ // -------------------------------------------------------------------------------- // Require // -------------------------------------------------------------------------------- const { getGitClangFormatPath, getClangFormatGitPath, } = require('./utils/getGitClangFormatPath'); const { gitClangFormatPath, clangFormatGitPath } = require('./utils/gitClangFormatPath'); // -------------------------------------------------------------------------------- // Exports // -------------------------------------------------------------------------------- module.exports = { getGitClangFormatPath, getClangFormatGitPath, gitClangFormatPath, clangFormatGitPath, };