npmplus-mcp-server
Version:
Production-ready MCP server for intelligent JavaScript package management. Works with Claude, Windsurf, Cursor, VS Code, and any MCP-compatible AI editor.
18 lines (15 loc) • 387 B
JavaScript
// This file is not imported by any other file (orphaned)
// It will be detected by the analyze_dependencies tool
function unusedFunction() {
console.log('This function is never called');
}
function anotherUnusedFunction() {
return {
status: 'orphaned',
message: 'This module is not imported anywhere'
};
}
module.exports = {
unusedFunction,
anotherUnusedFunction
};