UNPKG

nodry

Version:

A CLI tool and Node.js library that warns about repetitive code to help you stay DRY.

22 lines (16 loc) 276 B
// example.js function greet() { console.log("Hello!"); } function sum(a, b) { return a + b; } function repeatBlock() { let x = 10; let y = 20; if (x < y) { console.log("x is less than y"); } } // Upprepade rader utanför funktioner console.log("Start");