blob: 908982bf8cd3eaf94b96af90c86e75f06f236380 [file] [log] [blame]
'use strict'
/**
* Url object used for tracking files in `file-list.js`.
*/
class Url {
constructor (path, type) {
this.path = path
this.type = type
this.isUrl = true
}
toString () {
return this.path
}
}
module.exports = Url