Skip to content

Instantly share code, notes, and snippets.

@PamornT
Last active May 31, 2022 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PamornT/0bd1840c963f26949add8e53174d4a1a to your computer and use it in GitHub Desktop.
Save PamornT/0bd1840c963f26949add8e53174d4a1a to your computer and use it in GitHub Desktop.
// Verify Events request must array
const events = request.body.events
if(!events || !Array.isArray(events)) {
response.status(200).send('not have events')
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment