clang-format-node
Version:
Node wrapper for clang-format native binary inspired by angular/clang-format.🐉
19 lines (18 loc) • 745 B
JavaScript
;
/**
* @fileoverview Entry file for the `clang-format-node` package.
*/
// --------------------------------------------------------------------------------
// Require
// --------------------------------------------------------------------------------
const { clangFormatPath, clangFormatNodePath } = require('./utils/clangFormatPath');
const { getClangFormatPath, getClangFormatNodePath, } = require('./utils/getClangFormatPath');
// --------------------------------------------------------------------------------
// Exports
// --------------------------------------------------------------------------------
module.exports = {
clangFormatPath,
clangFormatNodePath,
getClangFormatPath,
getClangFormatNodePath,
};