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