10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-04 02:16:11 +02:00
QUESTDB_website/static/scripts/websiteFile.js

8 lines
138 B
JavaScript
Raw Normal View History

2019-09-30 09:53:07 +02:00
class websiteFile{
constructor(path){
this.path=path
}
get viewerUrl(){
2019-09-30 10:53:02 +02:00
return String.raw`/view?dataFile=${this.path}`
2019-09-30 09:53:07 +02:00
}
}