UNPKG

@rocketsofawesome/mirage

Version:

[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)

14 lines (13 loc) 272 B
export default class SourceSet { constructor (sources) { this.sources = sources } toString = () => { let output = `` for (let width in this.sources) { output = `${output}${this.sources[width]} ${width}, ` } return output.slice(0, -2) } }