// deno-fmt-ignore-file // deno-lint-ignore-file // This code was bundled using `deno bundle` and it's not recommended to edit it manually async function mapEvent(event) { const event2 = { ...event, extraProp: "123abc" }; return event2; } export { mapEvent as mapEvent };