UNPKG

213 BJavaScriptView Raw
1'use strict'
2
3const memoizePromise = require('./memoize_promise')
4
5function config (heroku, app) {
6 return heroku.get(`/apps/${app}/config-vars`)
7}
8
9module.exports = memoizePromise(config, (_heroku, app) => app)