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