UNPKG
karma-soy
Version:
latest (2.0.4)
2.0.4
Spectacular Test Runner for JavaScript.
karma-runner.github.io
karma-runner/karma
karma-soy
/
lib
/
url.js
19 lines
(15 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'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