We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc9314c commit ae878faCopy full SHA for ae878fa
1 file changed
src/licensing/endpoint.ts
@@ -19,10 +19,8 @@
19
declare const __LICENSE_ENDPOINT_ENCODED__: string;
20
declare const __LICENSE_ENDPOINT_XOR_KEY__: string;
21
22
-const encodedEP =
23
- typeof __LICENSE_ENDPOINT_ENCODED__ === 'string' ? __LICENSE_ENDPOINT_ENCODED__ : '';
24
-const xorKey =
25
- typeof __LICENSE_ENDPOINT_XOR_KEY__ === 'string' ? __LICENSE_ENDPOINT_XOR_KEY__ : '';
+const encodedEP = typeof __LICENSE_ENDPOINT_ENCODED__ === 'string' ? __LICENSE_ENDPOINT_ENCODED__ : '';
+const xorKey = typeof __LICENSE_ENDPOINT_XOR_KEY__ === 'string' ? __LICENSE_ENDPOINT_XOR_KEY__ : '';
26
27
export function resolveEndpoint(): string {
28
if (encodedEP && xorKey) {
0 commit comments