Description
src/commands/evaluate.ts defines its own local padRight() function instead of importing the identical implementation from src/utils/display.ts:164-170.
This is a minor code hygiene issue — the function is duplicated rather than reused.
Suggested fix
Replace the local padRight definition in evaluate.ts with an import:
import { padRight } from "../utils/display.js";
Description
src/commands/evaluate.tsdefines its own localpadRight()function instead of importing the identical implementation fromsrc/utils/display.ts:164-170.This is a minor code hygiene issue — the function is duplicated rather than reused.
Suggested fix
Replace the local
padRightdefinition inevaluate.tswith an import: