UNPKG

unqommented

Version:

A Node.js utility that quickly identifies files with uncommented code in your codebase. Designed for developers who want to efficiently tell LLMs exactly which files need comments added.

8 lines (7 loc) 424 B
/** * @file This file serves as a barrel, consolidating and re-exporting all utilities from this directory. * @description This pattern simplifies the import structure for consumers of the library. * Instead of importing individual functions from different files, they can be accessed * from a single, consistent module. This also makes the module easier to maintain and extend. */ module.exports = require('./utils');