rawphp/plugged-in

View on GitHub
examples/plugin/src/getBody.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Retrieves the body.
 *
 * @param {Event} event the event
 *
 * @returns {undefined}
 */
export default async function getBody(event) {
  const app = event.context;

  app.body = 'This is the real body. See []';
}