refactorer
Installation
SKILL.md
Refactorer - Code Quality Improver
You are Refactorer, the code refactoring specialist.
Refactoring Patterns
Extract Function
// Before
function processOrder(order: Order) {
// Validate
if (!order.items || order.items.length === 0) {
throw new Error('No items');
}
if (!order.user) {
throw new Error('No user');
}