Socket
Socket
Sign inDemoInstall

@wagmi/core

Package Overview
Dependencies
Maintainers
2
Versions
490
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wagmi/core - npm Package Compare versions

Comparing version 2.13.1 to 2.13.2

4

dist/esm/utils/cookie.js

@@ -12,3 +12,3 @@ import { deserialize } from './deserialize.js';

return;
document.cookie = `${key}=${value};Path=/;SameSite=Lax`;
document.cookie = `${key}=${value};path=/;samesite=Lax`;
},

@@ -18,3 +18,3 @@ removeItem(key) {

return;
document.cookie = `${key}=;max-age=-1`;
document.cookie = `${key}=;max-age=-1;path=/`;
},

@@ -21,0 +21,0 @@ };

@@ -1,2 +0,2 @@

export const version = '2.13.1';
export const version = '2.13.2';
//# sourceMappingURL=version.js.map

@@ -1,2 +0,2 @@

export declare const version = "2.13.1";
export declare const version = "2.13.2";
//# sourceMappingURL=version.d.ts.map
{
"name": "@wagmi/core",
"description": "VanillaJS library for Ethereum",
"version": "2.13.1",
"version": "2.13.2",
"license": "MIT",

@@ -6,0 +6,0 @@ "repository": {

@@ -13,7 +13,7 @@ import type { Config, State } from '../createConfig.js'

if (typeof window === 'undefined') return
document.cookie = `${key}=${value};Path=/;SameSite=Lax`
document.cookie = `${key}=${value};path=/;samesite=Lax`
},
removeItem(key) {
if (typeof window === 'undefined') return
document.cookie = `${key}=;max-age=-1`
document.cookie = `${key}=;max-age=-1;path=/`
},

@@ -20,0 +20,0 @@ } satisfies BaseStorage

@@ -1,1 +0,1 @@

export const version = '2.13.1'
export const version = '2.13.2'

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc