Skip to content

Instantly share code, notes, and snippets.

@danielhall95
danielhall95 / function.js
Last active April 7, 2020 19:21 — forked from nwestfall/function.js
City Church - Texting Lambda Function
const url = require('url')
exports.handler = async (event) => {
console.log(event)
let buffer = Buffer.from(event.body, 'base64')
var text = buffer.toString('ascii')