initial draft

This commit is contained in:
Tobias Miesel
2018-10-14 13:47:59 +02:00
committed by Manuel Bouza
parent 8ff93423af
commit c163c23e7e
20 changed files with 25116 additions and 4370 deletions

View File

@@ -0,0 +1,11 @@
class DomainCheck {
constructor(url) {
this.url = url
}
get hasMatch() {
return this.url.match(/github/)
}
}
export default DomainCheck