This commit is contained in:
Michael C
2022-09-25 02:05:51 -04:00
parent 005ae2c9fb
commit 8562dc2240
2 changed files with 2 additions and 2 deletions

View File

@@ -17,6 +17,6 @@ const subCode = (length = 8) => {
result += characters[(Math.floor(Math.random() * characters.length))];
}
return result;
}
};
export const generateLicense = (): string => `${subCode()}-${subCode()}-${subCode()}-${subCode()}`;