artifact_contract: ce-unified-plan/v1; execution: code
Add an optional quiet greeting without changing the existing greet behavior.
### Requirements R1. greetQuiet(name) returns an empty string for empty input and otherwise returns greet(name).
Add a separate export in src/quiet.js that imports greet from src/greet.js. Keep greet unchanged. No dependencies or architectural decisions are outstanding.
### U1. Quiet greeting - Covers R1. - Files: create src/quiet.js and tests/quiet.test.js. - Approach: trim the supplied string to detect blank input; otherwise delegate to greet. - Test scenarios: empty string and spaces return empty; Alice returns the existing greeting. - Verification: node --test tests/quiet.test.js.
Run node --test tests/quiet.test.js and check that greet('Alice') retains its existing output. Tests use Node's built-in test runner and assertions.
R1 passes the named scenarios; existing greet behavior remains unchanged. No open product or architecture decisions.