UNPKG

236 BJavaScriptView Raw
1// Url
2// ===
3//
4// Url object used for tracking files in `file-list.js`
5
6var Url = function (path) {
7 this.path = path
8 this.isUrl = true
9}
10
11Url.prototype.toString = function () {
12 return this.path
13}
14
15// PUBLIC
16module.exports = Url