UNPKG

buttercms

Version:
14 lines (10 loc) 200 B
'use strict'; function Feed(conn) { this._conn = conn; } Feed.prototype = { retrieve: function(type, options) { return this._conn.get(`feeds/${type}`, options) } } module.exports = Feed;