New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codescouts/svelte-store

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codescouts/svelte-store - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

lib/store.d.ts
import { StateCreator } from "./store.types";
export declare const create: <T, S>(stateCreator: StateCreator<T>) => () => T;
export declare const create: <T>(stateCreator: StateCreator<T>) => () => T;
//# sourceMappingURL=store.d.ts.map

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

var created = stateCreator(function (value) {
store.set(value);
store.set(Object.values(value)[0]);
});

@@ -10,0 +10,0 @@ var firstProperty = Object.entries(created).filter(function (e) { return typeof e[1] === "object"; })[0][0];

{
"name": "@codescouts/svelte-store",
"version": "1.0.0",
"version": "1.0.1",
"main": "./lib/index.js",

@@ -5,0 +5,0 @@ "types": "./lib/index.d.ts",

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