add create module

This commit is contained in:
2017-10-11 14:52:22 +02:00
parent 83279a9c19
commit 099bf9b270
16 changed files with 79 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ export class Domain {
topLevel: string
domainName
subDomain
constructor(domainStringArg: string) {
constructor (domainStringArg: string) {
let regexMatches = domainRegex(domainStringArg);
this.fullName = ''
for (let i = 1; i <= 5; i++) {