// How do you tell a coding agent when the job is done? // Teaching excerpts; see the explanation and boundaries on the episode page. // Make the rule executable. const required = s => s.trim().length > 0; assert.equal(required(""), false); assert.equal(required(" "), false); assert.equal(required("Ada"), true);