├── .gitignore ├── index.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .eslintrc.json 2 | node_modules/ 3 | .DS_Store -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malob/article-to-audio-cloud-function/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malob/article-to-audio-cloud-function/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malob/article-to-audio-cloud-function/HEAD/readme.md --------------------------------------------------------------------------------