export function greet({ message, recipient }) { return `${message}, ${recipient}!`; } console.log(greet({ message: "Hello", recipient: "Peruse" })); //# sourceMappingURL=example.js.map