url.js 254 B

12345678910111213141516171819
  1. 'use strict'
  2. /**
  3. * Url object used for tracking files in `file-list.js`.
  4. */
  5. class Url {
  6. constructor (path, type) {
  7. this.path = path
  8. this.type = type
  9. this.isUrl = true
  10. }
  11. toString () {
  12. return this.path
  13. }
  14. }
  15. module.exports = Url