UNPKG

workplus-api

Version:
19 lines (14 loc) 289 B
/** * Created by luomin on 16/7/12. */ 'use strict'; class Download { constructor(api, mediaId) { this.api = api; this.mediaId = mediaId; } assembleURL() { return `${this.api}/medias/images/${this.mediaId}`; } } module.exports = Download;