loqatevars
Version:
Locate JavaScript files with 'const' or 'process.env' usage in LLM-generated codebases
17 lines (14 loc) • 429 B
JavaScript
/**
* @file Main entry point for the loqatevars npm module.
* @description This file serves as the public interface for the `loqatevars` package.
* It exports the core scanning functions, making them available for programmatic
* use in other Node.js projects.
*/
const {
findMatchingFiles,
findMatchingFilesDetailed
} = require('./lib/utils.js');
module.exports = {
findMatchingFiles,
findMatchingFilesDetailed
};