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