UNPKG

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