Skip to content

Commit

Permalink
Add slk
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Oct 16, 2023
1 parent cfcd396 commit 90fabb3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/entries/chunks/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@ export function checkLibraryVersion(ver: string, libraryName: string): void {
}
}
export function setLicenseKey(key: string): void {
slk(key, lic, ReleaseDate);
slk(key);
}
export function slk(key: string): void {
_slk(key, lic, ReleaseDate);
}
export function hasLicense(index: number): boolean {
return lic[index.toString()] === true;
}
const lic: any = {};
function slk(k: any, lh: any, rd: any) {
function _slk(k: any, lh: any, rd: any) {
if (!k) return;
const en = (s: string) => {
var e: any = {}, i, b = 0, c, x, l = 0, a, r = "", w = String.fromCharCode, L = s.length;
Expand Down

0 comments on commit 90fabb3

Please sign in to comment.