Sign In

@otskit/client

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@otskit/client - npm Package Compare versions

Comparing version
0.7.0
to
0.7.1
+1
-1
dist/browser.js

@@ -503,3 +503,3 @@ // src/errors.ts

if (parsed.protocol !== "http:" && parsed.protocol !== "https:") return void 0;
const hostname = parsed.hostname.toLowerCase();
const hostname = parsed.hostname.toLowerCase().replaceAll("%2a", "*");
const wildcardSuffix = hostname.startsWith("*.") ? hostname.slice(2) : void 0;

@@ -506,0 +506,0 @@ if (hostname.includes("*") && wildcardSuffix === void 0) return void 0;

@@ -586,3 +586,3 @@ "use strict";

if (parsed.protocol !== "http:" && parsed.protocol !== "https:") return void 0;
const hostname = parsed.hostname.toLowerCase();
const hostname = parsed.hostname.toLowerCase().replaceAll("%2a", "*");
const wildcardSuffix = hostname.startsWith("*.") ? hostname.slice(2) : void 0;

@@ -589,0 +589,0 @@ if (hostname.includes("*") && wildcardSuffix === void 0) return void 0;

@@ -536,3 +536,3 @@ // src/types.ts

if (parsed.protocol !== "http:" && parsed.protocol !== "https:") return void 0;
const hostname = parsed.hostname.toLowerCase();
const hostname = parsed.hostname.toLowerCase().replaceAll("%2a", "*");
const wildcardSuffix = hostname.startsWith("*.") ? hostname.slice(2) : void 0;

@@ -539,0 +539,0 @@ if (hostname.includes("*") && wildcardSuffix === void 0) return void 0;

{
"name": "@otskit/client",
"version": "0.7.0",
"version": "0.7.1",
"description": "Official client SDK for OpenTimestamps calendars with resilience patterns",

@@ -5,0 +5,0 @@ "author": "alexalves87",